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

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