| 819 | #endif // if defined(JSON_HAS_INT64) |
| 820 | |
| 821 | LargestInt Value::asLargestInt() const { |
| 822 | #if defined(JSON_NO_INT64) |
| 823 | return asInt(); |
| 824 | #else |
| 825 | return asInt64(); |
| 826 | #endif |
| 827 | } |
| 828 | |
| 829 | LargestUInt Value::asLargestUInt() const { |
| 830 | #if defined(JSON_NO_INT64) |
no outgoing calls
no test coverage detected