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/03/27 01:29:32 UTC

[jira] Updated: (STDCXX-129) [HP aCC] ::wmemcpy et al not declared in

     [ https://issues.apache.org/jira/browse/STDCXX-129?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Sebor updated STDCXX-129:
--------------------------------

    Summary: [HP aCC] ::wmemcpy et al not declared in <wchar.h>  (was: [HP aCC] ::wmemcpy et al not delcared in <wchar.h>)

> [HP aCC] ::wmemcpy et al not declared in <wchar.h>
> --------------------------------------------------
>
>                 Key: STDCXX-129
>                 URL: https://issues.apache.org/jira/browse/STDCXX-129
>             Project: C++ Standard Library
>          Issue Type: Bug
>          Components: 21. Strings
>    Affects Versions: 4.1.3, 4.1.2
>         Environment: HP aCC 3.63
>            Reporter: Martin Sebor
>         Assigned To: Martin Sebor
>            Priority: Critical
>             Fix For: 4.2
>
>
> The program below fails to compile with HP aCC 3.63 when optimization is on:
> $ cat t.cpp && gmake t
> #include <string>
> #include <wchar.h>
> int main ()
> {
>     wmemcpy (0, 0, 0);
> }
> generating dependencies for t.cpp
> aCC -c -I/build/sebor/dev/stdlib/include/ansi -I/usr/include    -mt -D_RWSTD_USE_CONFIG -I/build/sebor/aCC-3.63-12d/include -I/build/sebor/dev/stdlib/include -I/build/sebor/dev/stdlib/examples/include  -Aa +nostl  +O2  +w +W392 +W655 +W684 +W818 +W819 +W849  t.cpp
> Error 403: "t.cpp", line 6 # Undeclared variable 'wmemcpy'. Perhaps 'memcpy'
>     as in "void *memcpy(void *,const void *,unsigned long)"
>     ["/usr/include/../include/string.h", line 195] was intended.
>         wmemcpy (0, 0, 0);
>         ^^^^^^^           
> gmake: *** [t.o] Error 2

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.