From 3e62631ecb3cbbdce13a91ecaa8b3170802a6a3f Mon Sep 17 00:00:00 2001 From: David Deakins Date: Wed, 1 Apr 2009 14:56:27 +0000 Subject: [PATCH] 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] --- include/boost/regex/config/cwchar.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/regex/config/cwchar.hpp b/include/boost/regex/config/cwchar.hpp index 1d189e6c..a55089d0 100644 --- a/include/boost/regex/config/cwchar.hpp +++ b/include/boost/regex/config/cwchar.hpp @@ -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