
20 Jul
2004
20 Jul
'04
10:32 a.m.
The workaround should make use of the BOOST_NO_CWCHAR macro, which is set if _GLIBCPP_USE_WCHAR_T / _GLIBCXX_USE_WCHAR_T is not set (see boost/config/stdlib/libstdcpp3.hpp)
Maybe something like this (but using BOOST_WORKAROUND):
#if defined( __GNUC__ ) && defined( BOOST_NO_CWCHAR ) namespace std { using ::wcscmp; } #endif
Why do I need to test for gcc here in a first place?
Although this isn't quite right, as it only tests for GCC, but it's the stdlib that affects the availablity of std::wcscmp (i.e. GCC with STLPort wouldn't be affected AFAICT)
jon
Thanks for analysis, I will apply this fix. Gennadiy.