second pass over compilation warnings

This commit is contained in:
csoler 2016-06-05 11:05:52 -04:00
parent 927f782bef
commit f55b283887
17 changed files with 28 additions and 28 deletions

View file

@ -525,7 +525,7 @@ std::string SerializeValue(const Value& v)
// json expets decimal points, so replace all commas with decimal points
if(v.GetType() == FloatVal || v.GetType() == DoubleVal)
{
for(int i = 0; i < str.size(); i++)
for(unsigned int i = 0; i < str.size(); i++)
if(str[i] == ',')
str[i] = '.';
}