Regex: Remove obsolete GCC version checks.

[SVN r86065]
This commit is contained in:
Stephen Kelly
2013-09-30 15:57:49 +00:00
parent 49b7f2c8f9
commit 2d8ee203bf
2 changed files with 0 additions and 21 deletions

View File

@ -458,11 +458,7 @@ bool perl_matcher<BidiIterator, Allocator, traits>::match_word_boundary()
if(position != last)
{
// prev and this character must be opposites:
#if defined(BOOST_REGEX_USE_C_LOCALE) && defined(__GNUC__) && (__GNUC__ == 2) && (__GNUC_MINOR__ < 95)
b = traits::isctype(*position, m_word_mask);
#else
b = traits_inst.isctype(*position, m_word_mask);
#endif
}
else
{