mirror of
https://github.com/boostorg/regex.git
synced 2025-07-16 13:52:17 +02:00
Fixed VC warning
[SVN r18506]
This commit is contained in:
@ -91,7 +91,7 @@ public:
|
|||||||
{
|
{
|
||||||
if(N == -1)
|
if(N == -1)
|
||||||
return false;
|
return false;
|
||||||
if(N+1 < subs.size())
|
if(N+1 < (int)subs.size())
|
||||||
{
|
{
|
||||||
++N;
|
++N;
|
||||||
result =((subs[N] == -1) ? value_type(what.prefix().str()) : value_type(what[subs[N]].str()));
|
result =((subs[N] == -1) ? value_type(what.prefix().str()) : value_type(what[subs[N]].str()));
|
||||||
|
Reference in New Issue
Block a user