| 2133 | #endif // if defined(JSON_HAS_INT64) |
| 2134 | |
| 2135 | LargestInt Value::asLargestInt() const { |
| 2136 | #if defined(JSON_NO_INT64) |
| 2137 | return asInt(); |
| 2138 | #else |
| 2139 | return asInt64(); |
| 2140 | #endif |
| 2141 | } |
| 2142 | |
| 2143 | LargestUInt Value::asLargestUInt() const { |
| 2144 | #if defined(JSON_NO_INT64) |
no outgoing calls
no test coverage detected