| 3416 | #endif // if defined(JSON_HAS_INT64) |
| 3417 | |
| 3418 | LargestInt Value::asLargestInt() const |
| 3419 | { |
| 3420 | #if defined(JSON_NO_INT64) |
| 3421 | return asInt(); |
| 3422 | #else |
| 3423 | return asInt64(); |
| 3424 | #endif |
| 3425 | } |
| 3426 | |
| 3427 | LargestUInt Value::asLargestUInt() const |
| 3428 | { |