Fixed VC warning

[SVN r18506]
This commit is contained in:
John Maddock
2003-05-23 10:57:04 +00:00
parent 922322b644
commit 4122e8f08d

View File

@ -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()));