| 3179 | #endif // if defined(JSON_HAS_INT64) |
| 3180 | |
| 3181 | LargestInt Value::asLargestInt() const { |
| 3182 | #if defined(JSON_NO_INT64) |
| 3183 | return asInt(); |
| 3184 | #else |
| 3185 | return asInt64(); |
| 3186 | #endif |
| 3187 | } |
| 3188 | |
| 3189 | LargestUInt Value::asLargestUInt() const { |
| 3190 | #if defined(JSON_NO_INT64) |