| 792 | #endif // if defined(JSON_HAS_INT64) |
| 793 | |
| 794 | LargestInt Value::asLargestInt() const { |
| 795 | #if defined(JSON_NO_INT64) |
| 796 | return asInt(); |
| 797 | #else |
| 798 | return asInt64(); |
| 799 | #endif |
| 800 | } |
| 801 | |
| 802 | LargestUInt Value::asLargestUInt() const { |
| 803 | #if defined(JSON_NO_INT64) |