mirror of
https://github.com/boostorg/regex.git
synced 2025-07-19 07:12:07 +02:00
Added minor bug fixes (some expressions starting with ^ were not being found), plus a few warning suppressions.
[SVN r18679]
This commit is contained in:
@ -103,7 +103,7 @@ public:
|
||||
{
|
||||
sub += 2;
|
||||
string_type result;
|
||||
if(sub < m_subs.size() && (sub > 0))
|
||||
if(sub < (int)m_subs.size() && (sub > 0))
|
||||
{
|
||||
const sub_match<RandomAccessIterator>& s = m_subs[sub];
|
||||
if(s.matched)
|
||||
|
Reference in New Issue
Block a user