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