Fix start of extended character range.

See https://svn.boost.org/trac/boost/ticket/11524
This commit is contained in:
jzmaddock
2015-09-24 19:01:44 +01:00
parent 5e98fe9a6a
commit 94c7d4a38a

View File

@ -53,7 +53,7 @@ namespace boost{ namespace BOOST_REGEX_DETAIL_NS{
//
template <class charT>
inline bool is_extended(charT c)
{ return c > 256; }
{ return c >= 256u; }
inline bool is_extended(char)
{ return false; }