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