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