Hi, all.
I want to use boost Xpress on Windows CE 5.0 (w/VS2005)
when compile sample code, error occors reason of "btowc()" function.
if I comment out
////////////////////////// c_regex_traits.hpp /////////////////////////
#ifndef BOOST_XPRESSIVE_NO_WREGEX
/// INTERNAL ONLY
template<>
inline wchar_t c_regex_traits<wchar_t>::widen(char ch)
{
using namespace std;
return btowc(ch); <<-------------- here!!!
}
#endif
//////////////////////////////////////////////////////////////////////
this function not supported in Windows CE.
is there any solution of the compile error?
regards,
from bstill.
ps:
when I compile with "BOOST_XPRESSIVE_NO_WREGEX" preprossor, another errors are occur.