mirror of
https://github.com/boostorg/regex.git
synced 2025-07-16 22:02:08 +02:00
Change constant values to avoid clash with gcc-4 on Darwin.
[SVN r29727]
This commit is contained in:
@ -395,9 +395,9 @@ public:
|
|||||||
typedef typename cpp_regex_traits<charT>::char_class_type char_class_type;
|
typedef typename cpp_regex_traits<charT>::char_class_type char_class_type;
|
||||||
typedef typename std::ctype<charT>::mask native_mask_type;
|
typedef typename std::ctype<charT>::mask native_mask_type;
|
||||||
#ifndef BOOST_REGEX_BUGGY_CTYPE_FACET
|
#ifndef BOOST_REGEX_BUGGY_CTYPE_FACET
|
||||||
BOOST_STATIC_CONSTANT(char_class_type, mask_blank = 1u << 16);
|
BOOST_STATIC_CONSTANT(char_class_type, mask_blank = 1u << 24);
|
||||||
BOOST_STATIC_CONSTANT(char_class_type, mask_word = 1u << 17);
|
BOOST_STATIC_CONSTANT(char_class_type, mask_word = 1u << 25);
|
||||||
BOOST_STATIC_CONSTANT(char_class_type, mask_unicode = 1u << 18);
|
BOOST_STATIC_CONSTANT(char_class_type, mask_unicode = 1u << 26);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef std::basic_string<charT> string_type;
|
typedef std::basic_string<charT> string_type;
|
||||||
|
Reference in New Issue
Block a user