| 2141 | } |
| 2142 | |
| 2143 | LargestUInt Value::asLargestUInt() const { |
| 2144 | #if defined(JSON_NO_INT64) |
| 2145 | return asUInt(); |
| 2146 | #else |
| 2147 | return asUInt64(); |
| 2148 | #endif |
| 2149 | } |
| 2150 | |
| 2151 | double Value::asDouble() const { |
| 2152 | switch (type_) { |
no outgoing calls
no test coverage detected