Windows CE does not define the wcscoll function from the CRT so, for WinCE, don't try to pull wcscoll from the global namespace into the std namespace.

[SVN r52106]
This commit is contained in:
David Deakins
2009-04-01 14:56:27 +00:00
parent 8586e7a9cd
commit 3e62631ecb

View File

@ -168,7 +168,7 @@ using ::wcscmp;
inline int (wcscoll)(const wchar_t *p1, const wchar_t *p2)
{ return wcscoll(p1,p2); }
#undef wcscoll
#elif defined(BOOST_NO_STDC_NAMESPACE)
#elif defined(BOOST_NO_STDC_NAMESPACE) && !defined(UNDER_CE)
using ::wcscoll;
#endif