mirror of
https://github.com/boostorg/regex.git
synced 2025-07-17 22:32:09 +02:00
mingw dll specific fixes.
Disable one SGI test - compiler deduces template arguments strangely. [SVN r25270]
This commit is contained in:
@ -588,6 +588,7 @@ std::string RegEx::What(int i)const
|
||||
return result;
|
||||
}
|
||||
|
||||
#ifndef __MINGW32__
|
||||
#ifndef BOOST_NO_INCLASS_MEMBER_INITIALIZATION
|
||||
const std::size_t RegEx::npos = ::boost::integer_traits<std::size_t>::const_max;
|
||||
#elif defined(BOOST_HAS_LONG_LONG)
|
||||
@ -595,6 +596,7 @@ const std::size_t RegEx::npos = ~0ULL;
|
||||
#else
|
||||
const std::size_t RegEx::npos = ~0UL;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
} // namespace boost
|
||||
|
||||
|
Reference in New Issue
Block a user