mirror of
https://github.com/boostorg/regex.git
synced 2025-07-16 22:02:08 +02:00
Added como warning suppression.
[SVN r18508]
This commit is contained in:
@ -612,7 +612,7 @@ bool perl_matcher<BidiIterator, Allocator, traits, Allocator2>::find_restart_any
|
|||||||
// run out of characters, try a null match if possible:
|
// run out of characters, try a null match if possible:
|
||||||
if(access::first(re)->can_be_null)
|
if(access::first(re)->can_be_null)
|
||||||
return match_prefix();
|
return match_prefix();
|
||||||
return false;
|
break;
|
||||||
}
|
}
|
||||||
// now try and obtain a match:
|
// now try and obtain a match:
|
||||||
if(match_prefix())
|
if(match_prefix())
|
||||||
@ -647,7 +647,7 @@ bool perl_matcher<BidiIterator, Allocator, traits, Allocator2>::find_restart_wor
|
|||||||
while((position != last) && !traits_inst.is_class(*position, traits::char_class_word))
|
while((position != last) && !traits_inst.is_class(*position, traits::char_class_word))
|
||||||
++position;
|
++position;
|
||||||
if(position == last)
|
if(position == last)
|
||||||
return false;
|
break;
|
||||||
|
|
||||||
if(access::can_start(*position, _map, (unsigned char)mask_any) )
|
if(access::can_start(*position, _map, (unsigned char)mask_any) )
|
||||||
{
|
{
|
||||||
@ -655,7 +655,7 @@ bool perl_matcher<BidiIterator, Allocator, traits, Allocator2>::find_restart_wor
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if(position == last)
|
if(position == last)
|
||||||
return false;
|
break;
|
||||||
} while(true);
|
} while(true);
|
||||||
return false;
|
return false;
|
||||||
#ifdef BOOST_MSVC
|
#ifdef BOOST_MSVC
|
||||||
|
Reference in New Issue
Block a user