| 3195 | #endif // if defined(JSON_HAS_INT64) |
| 3196 | |
| 3197 | LargestInt Value::asLargestInt() const { |
| 3198 | #if defined(JSON_NO_INT64) |
| 3199 | return asInt(); |
| 3200 | #else |
| 3201 | return asInt64(); |
| 3202 | #endif |
| 3203 | } |
| 3204 | |
| 3205 | LargestUInt Value::asLargestUInt() const { |
| 3206 | #if defined(JSON_NO_INT64) |