SF Bug 599

SF Bug #599 JSON::Array and JSON::Object size() member can implicitly
lose precision
https://sourceforge.net/p/poco/patches/120/
This commit is contained in:
aleks-f
2012-12-02 21:26:34 -06:00
parent a54c34e7d0
commit cdd17f5203
3 changed files with 11 additions and 11 deletions

View File

@@ -115,7 +115,7 @@ void Array::stringify(std::ostream& out, unsigned int indent) const
if ( indent > 0 )
out << std::endl;
for(ValueVector::const_iterator it = _values.begin(); it != _values.end();)
for(ValueVec::const_iterator it = _values.begin(); it != _values.end();)
{
for(int i = 0; i < indent; i++)
{