mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-21 15:51:43 +02:00
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:
@@ -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++)
|
||||
{
|
||||
|
Reference in New Issue
Block a user