removed MSVC warning suppression - it causes the compiler to ICE under some conditions

[SVN r15195]
This commit is contained in:
John Maddock
2002-09-07 10:47:06 +00:00
parent de9ecb7407
commit aebf86bbe5

View File

@ -289,11 +289,6 @@ bool query_match_aux(iterator first,
_priv_match_data<iterator, Allocator>& pd, _priv_match_data<iterator, Allocator>& pd,
iterator* restart) iterator* restart)
{ {
# ifdef BOOST_MSVC
# pragma warning(push)
# pragma warning(disable: 4127)
#endif
typedef access_t<charT, traits, Allocator2> access; typedef access_t<charT, traits, Allocator2> access;
if(e.flags() & regbase::failbit) if(e.flags() & regbase::failbit)
@ -1047,9 +1042,6 @@ bool query_match_aux(iterator first,
// if we get to here then everything has failed // if we get to here then everything has failed
// and no match was found: // and no match was found:
return false; return false;
# ifdef BOOST_MSVC
# pragma warning(pop)
#endif
} }
#if defined(BOOST_REGEX_NO_TEMPLATE_SWITCH_MERGE) #if defined(BOOST_REGEX_NO_TEMPLATE_SWITCH_MERGE)
} // namespace } // namespace