mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-10-23 08:31:43 +02:00
Untabified some sources
This commit is contained in:
@@ -488,7 +488,7 @@ Reader::readObject( Token &/*tokenStart*/ )
|
||||
if ( !readToken( comma )
|
||||
|| ( comma.type_ != tokenObjectEnd &&
|
||||
comma.type_ != tokenArraySeparator &&
|
||||
comma.type_ != tokenComment ) )
|
||||
comma.type_ != tokenComment ) )
|
||||
{
|
||||
return addErrorAndRecover( "Missing ',' or '}' in object declaration",
|
||||
comma,
|
||||
|
@@ -827,9 +827,9 @@ LargestInt
|
||||
Value::asLargestInt() const
|
||||
{
|
||||
#if defined(JSON_NO_INT64)
|
||||
return asInt();
|
||||
return asInt();
|
||||
#else
|
||||
return asInt64();
|
||||
return asInt64();
|
||||
#endif
|
||||
}
|
||||
|
||||
@@ -838,9 +838,9 @@ LargestUInt
|
||||
Value::asLargestUInt() const
|
||||
{
|
||||
#if defined(JSON_NO_INT64)
|
||||
return asUInt();
|
||||
return asUInt();
|
||||
#else
|
||||
return asUInt64();
|
||||
return asUInt64();
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@@ -656,7 +656,7 @@ StyledStreamWriter::writeArrayValue( const Value &value )
|
||||
writeWithIndent( childValues_[index] );
|
||||
else
|
||||
{
|
||||
writeIndent();
|
||||
writeIndent();
|
||||
writeValue( childValue );
|
||||
}
|
||||
if ( ++index == size )
|
||||
|
Reference in New Issue
Block a user