You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@stdcxx.apache.org by "Martin Sebor (JIRA)" <ji...@apache.org> on 2007/01/19 19:41:30 UTC

[jira] Created: (STDCXX-324) std::div_t, std::ldiv_t missing members quot and rem

std::div_t, std::ldiv_t missing members quot and rem
----------------------------------------------------

                 Key: STDCXX-324
                 URL: https://issues.apache.org/jira/browse/STDCXX-324
             Project: C++ Standard Library
          Issue Type: Bug
          Components: 26. Numerics
    Affects Versions: 4.1.2, 4.1.3
         Environment: EDG eccp/Solaris
            Reporter: Martin Sebor
             Fix For: 4.2


The C standard(7.20.6.2, p3) requires the structs div_t and ldiv_t to contain the members quot and rem. We seem to be missing them:

$ cat t.cpp && make t
#include <cstdlib>

int main ()
{
    const std::div_t x = { };
    const std::ldiv_t y = { };

    return x.quot + x.rem + y.quot + y.rem;
}

eccp -c -I/build/sebor/dev/stdlib/include/ansi -D_RWSTDDEBUG    -D_RWSTD_USE_CONFIG -I/build/sebor/dev/stdlib/include -I/build/sebor/eccp-3.8-11s/include -I/build/sebor/dev/stdlib/include/ansi -I/build/sebor/PlumHall/lvs06a/conform -I/build/sebor/PlumHall/lvs06a/dst.3  -A -x --template_directory=/build/sebor/eccp-3.8-11s/lib -g  --display_error_number --remarks --diag_suppress 193,236,340,401,261,479,487,678,679,815 --diag_suppress 177,381,191,68,550,611,997,549   t.cpp
"t.cpp", line 8: error #135: class "std::div_t" has no member "quot"
      return x.quot + x.rem + y.quot + y.rem;
               ^

"t.cpp", line 8: error #135: class "std::div_t" has no member "rem"
      return x.quot + x.rem + y.quot + y.rem;
                        ^

"t.cpp", line 8: error #135: class "std::ldiv_t" has no member "quot"
      return x.quot + x.rem + y.quot + y.rem;
                                ^

"t.cpp", line 8: error #135: class "std::ldiv_t" has no member "rem"
      return x.quot + x.rem + y.quot + y.rem;
                                         ^

4 errors detected in the compilation of "t.cpp".
make: *** [t.o] Error 2


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Resolved: (STDCXX-324) std::div_t, std::ldiv_t missing members quot and rem

Posted by "Martin Sebor (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/STDCXX-324?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Sebor resolved STDCXX-324.
---------------------------------

    Resolution: Fixed

Fixed by the referenced patch. Needs a test.

> std::div_t, std::ldiv_t missing members quot and rem
> ----------------------------------------------------
>
>                 Key: STDCXX-324
>                 URL: https://issues.apache.org/jira/browse/STDCXX-324
>             Project: C++ Standard Library
>          Issue Type: Bug
>          Components: 26. Numerics
>    Affects Versions: 4.1.3, 4.1.2
>         Environment: EDG eccp/Solaris
>            Reporter: Martin Sebor
>         Assigned To: Martin Sebor
>             Fix For: 4.2
>
>
> The C standard(7.20.6.2, p3) requires the structs div_t and ldiv_t to contain the members quot and rem. We seem to be missing them:
> $ cat t.cpp && make t
> #include <cstdlib>
> int main ()
> {
>     const std::div_t x = { };
>     const std::ldiv_t y = { };
>     return x.quot + x.rem + y.quot + y.rem;
> }
> eccp -c -I/build/sebor/dev/stdlib/include/ansi -D_RWSTDDEBUG    -D_RWSTD_USE_CONFIG -I/build/sebor/dev/stdlib/include -I/build/sebor/eccp-3.8-11s/include -I/build/sebor/dev/stdlib/include/ansi -I/build/sebor/PlumHall/lvs06a/conform -I/build/sebor/PlumHall/lvs06a/dst.3  -A -x --template_directory=/build/sebor/eccp-3.8-11s/lib -g  --display_error_number --remarks --diag_suppress 193,236,340,401,261,479,487,678,679,815 --diag_suppress 177,381,191,68,550,611,997,549   t.cpp
> "t.cpp", line 8: error #135: class "std::div_t" has no member "quot"
>       return x.quot + x.rem + y.quot + y.rem;
>                ^
> "t.cpp", line 8: error #135: class "std::div_t" has no member "rem"
>       return x.quot + x.rem + y.quot + y.rem;
>                         ^
> "t.cpp", line 8: error #135: class "std::ldiv_t" has no member "quot"
>       return x.quot + x.rem + y.quot + y.rem;
>                                 ^
> "t.cpp", line 8: error #135: class "std::ldiv_t" has no member "rem"
>       return x.quot + x.rem + y.quot + y.rem;
>                                          ^
> 4 errors detected in the compilation of "t.cpp".
> make: *** [t.o] Error 2

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Assigned: (STDCXX-324) std::div_t, std::ldiv_t missing members quot and rem

Posted by "Martin Sebor (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/STDCXX-324?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Sebor reassigned STDCXX-324:
-----------------------------------

    Assignee: Martin Sebor

> std::div_t, std::ldiv_t missing members quot and rem
> ----------------------------------------------------
>
>                 Key: STDCXX-324
>                 URL: https://issues.apache.org/jira/browse/STDCXX-324
>             Project: C++ Standard Library
>          Issue Type: Bug
>          Components: 26. Numerics
>    Affects Versions: 4.1.3, 4.1.2
>         Environment: EDG eccp/Solaris
>            Reporter: Martin Sebor
>         Assigned To: Martin Sebor
>             Fix For: 4.2
>
>
> The C standard(7.20.6.2, p3) requires the structs div_t and ldiv_t to contain the members quot and rem. We seem to be missing them:
> $ cat t.cpp && make t
> #include <cstdlib>
> int main ()
> {
>     const std::div_t x = { };
>     const std::ldiv_t y = { };
>     return x.quot + x.rem + y.quot + y.rem;
> }
> eccp -c -I/build/sebor/dev/stdlib/include/ansi -D_RWSTDDEBUG    -D_RWSTD_USE_CONFIG -I/build/sebor/dev/stdlib/include -I/build/sebor/eccp-3.8-11s/include -I/build/sebor/dev/stdlib/include/ansi -I/build/sebor/PlumHall/lvs06a/conform -I/build/sebor/PlumHall/lvs06a/dst.3  -A -x --template_directory=/build/sebor/eccp-3.8-11s/lib -g  --display_error_number --remarks --diag_suppress 193,236,340,401,261,479,487,678,679,815 --diag_suppress 177,381,191,68,550,611,997,549   t.cpp
> "t.cpp", line 8: error #135: class "std::div_t" has no member "quot"
>       return x.quot + x.rem + y.quot + y.rem;
>                ^
> "t.cpp", line 8: error #135: class "std::div_t" has no member "rem"
>       return x.quot + x.rem + y.quot + y.rem;
>                         ^
> "t.cpp", line 8: error #135: class "std::ldiv_t" has no member "quot"
>       return x.quot + x.rem + y.quot + y.rem;
>                                 ^
> "t.cpp", line 8: error #135: class "std::ldiv_t" has no member "rem"
>       return x.quot + x.rem + y.quot + y.rem;
>                                          ^
> 4 errors detected in the compilation of "t.cpp".
> make: *** [t.o] Error 2

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira