| 2213 | #endif // if defined(JSON_HAS_INT64) |
| 2214 | |
| 2215 | LargestInt Value::asLargestInt() const { |
| 2216 | #if defined(JSON_NO_INT64) |
| 2217 | return asInt(); |
| 2218 | #else |
| 2219 | return asInt64(); |
| 2220 | #endif |
| 2221 | } |
| 2222 | |
| 2223 | LargestUInt Value::asLargestUInt() const { |
| 2224 | #if defined(JSON_NO_INT64) |