| 804 | #endif // if defined(JSON_HAS_INT64) |
| 805 | |
| 806 | LargestInt Value::asLargestInt() const { |
| 807 | #if defined(JSON_NO_INT64) |
| 808 | return asInt(); |
| 809 | #else |
| 810 | return asInt64(); |
| 811 | #endif |
| 812 | } |
| 813 | |
| 814 | LargestUInt Value::asLargestUInt() const { |
| 815 | #if defined(JSON_NO_INT64) |
no outgoing calls
no test coverage detected