Untabified some sources

This commit is contained in:
Baptiste Lepilleur
2011-05-02 18:41:01 +00:00
parent fb17080142
commit e3cc0f004b
5 changed files with 35 additions and 35 deletions

View File

@@ -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,

View File

@@ -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
}

View File

@@ -656,7 +656,7 @@ StyledStreamWriter::writeArrayValue( const Value &value )
writeWithIndent( childValues_[index] );
else
{
writeIndent();
writeIndent();
writeValue( childValue );
}
if ( ++index == size )