mirror of
https://github.com/boostorg/regex.git
synced 2025-07-16 13:52:17 +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>
|
||||
inline bool is_extended(charT c)
|
||||
{ return c > 256; }
|
||||
{ return c >= 256u; }
|
||||
inline bool is_extended(char)
|
||||
{ return false; }
|
||||
|
||||
|
Reference in New Issue
Block a user