mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-06 08:05:18 -04:00
second pass over compilation warnings
This commit is contained in:
parent
927f782bef
commit
f55b283887
17 changed files with 28 additions and 28 deletions
|
@ -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] = '.';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue