| 3148 | #endif // if defined(JSON_HAS_INT64) |
| 3149 | |
| 3150 | LargestInt Value::asLargestInt() const { |
| 3151 | #if defined(JSON_NO_INT64) |
| 3152 | return asInt(); |
| 3153 | #else |
| 3154 | return asInt64(); |
| 3155 | #endif |
| 3156 | } |
| 3157 | |
| 3158 | LargestUInt Value::asLargestUInt() const { |
| 3159 | #if defined(JSON_NO_INT64) |