| 3243 | #endif // if defined(JSON_HAS_INT64) |
| 3244 | |
| 3245 | LargestInt Value::asLargestInt() const { |
| 3246 | #if defined(JSON_NO_INT64) |
| 3247 | return asInt(); |
| 3248 | #else |
| 3249 | return asInt64(); |
| 3250 | #endif |
| 3251 | } |
| 3252 | |
| 3253 | LargestUInt Value::asLargestUInt() const { |
| 3254 | #if defined(JSON_NO_INT64) |