mirror of
https://github.com/boostorg/regex.git
synced 2025-07-15 13:26:38 +02:00
removed MSVC warning suppression - it causes the compiler to ICE under some conditions
[SVN r15195]
This commit is contained in:
@ -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
|
||||||
|
Reference in New Issue
Block a user