[
https://issues.apache.org/jira/browse/STDCXX-873?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12589891#action_12589891
]
Farid Zaripov commented on STDCXX-873:
--------------------------------------
Merged in 4.2.x branch thus:
http://svn.apache.org/viewvc?view=rev&revision=648752
> [EDG eccp 3.9/SuSE 9] wcslen() not declared in <wchar.h>
> --------------------------------------------------------
>
> Key: STDCXX-873
> URL: https://issues.apache.org/jira/browse/STDCXX-873
> Project: C++ Standard Library
> Issue Type: Bug
> Components: 21. Strings
> Affects Versions: 4.2.0
> Environment: Edison Design Group C/C++ Front End, version 3.9 (Mar 24
> 2007 16:01:33)
> SUSE LINUX Enterprise Server 9 (x86_64)
> Reporter: Martin Sebor
> Assignee: Martin Sebor
> Fix For: 4.2.1
>
> Original Estimate: 1h
> Time Spent: 1h
> Remaining Estimate: 0h
>
> The C++ '98 function {{wcslen()}} required to be declared in {{<wchar.h>}}
> and {{<cwchar>}} is not declared in our version of the former header when
> compiling with EDG eccp on SuSE Linux 9. The function is declared in
> {{<cwchar>}} as expected.
> {noformat}
> $ cat t.cpp && make t
> #include <wchar.h>
> int main ()
> {
> return wcslen (L"");
> }
> generating dependencies for t.cpp
> eccp -M -I$TOPDIR/include/ansi -D_RWSTDDEBUG -I$TOPDIR/include
> -I/build/sebor/stdcxx-eccp-3.9-11s/include -I$TOPDIR/examples/include -A -x
> --template_directory=/build/sebor/stdcxx-eccp-3.9-11s/lib -g
> --display_error_number --remarks --diag_suppress
> 193,236,340,401,261,479,487,678,679,815 t.cpp
> eccp -c -I$TOPDIR/include/ansi -D_RWSTDDEBUG -I$TOPDIR/include
> -I/build/sebor/stdcxx-eccp-3.9-11s/include -I$TOPDIR/examples/include -A -x
> --template_directory=/build/sebor/stdcxx-eccp-3.9-11s/lib -g
> --display_error_number --remarks --diag_suppress
> 193,236,340,401,261,479,487,678,679,815 t.cpp
> "t.cpp", line 5: error #20: identifier "wcslen" is undefined
> return wcslen (L"");
> ^
> 1 error detected in the compilation of "t.cpp".
> make: *** [t.o] Error 2
> {noformat}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.