| 741 | #endif // if defined(JSON_HAS_INT64) |
| 742 | |
| 743 | LargestInt Value::asLargestInt() const { |
| 744 | #if defined(JSON_NO_INT64) |
| 745 | return asInt(); |
| 746 | #else |
| 747 | return asInt64(); |
| 748 | #endif |
| 749 | } |
| 750 | |
| 751 | LargestUInt Value::asLargestUInt() const { |
| 752 | #if defined(JSON_NO_INT64) |