mirror of
https://github.com/boostorg/regex.git
synced 2025-07-17 06:12:10 +02:00
Fix start of extended character range.
See https://svn.boost.org/trac/boost/ticket/11524
This commit is contained in:
@ -53,7 +53,7 @@ namespace boost{ namespace BOOST_REGEX_DETAIL_NS{
|
|||||||
//
|
//
|
||||||
template <class charT>
|
template <class charT>
|
||||||
inline bool is_extended(charT c)
|
inline bool is_extended(charT c)
|
||||||
{ return c > 256; }
|
{ return c >= 256u; }
|
||||||
inline bool is_extended(char)
|
inline bool is_extended(char)
|
||||||
{ return false; }
|
{ return false; }
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user