| 3288 | #endif // if defined(JSON_HAS_INT64) |
| 3289 | |
| 3290 | LargestInt Value::asLargestInt() const { |
| 3291 | #if defined(JSON_NO_INT64) |
| 3292 | return asInt(); |
| 3293 | #else |
| 3294 | return asInt64(); |
| 3295 | #endif |
| 3296 | } |
| 3297 | |
| 3298 | LargestUInt Value::asLargestUInt() const { |
| 3299 | #if defined(JSON_NO_INT64) |