| 812 | } |
| 813 | |
| 814 | LargestUInt Value::asLargestUInt() const { |
| 815 | #if defined(JSON_NO_INT64) |
| 816 | return asUInt(); |
| 817 | #else |
| 818 | return asUInt64(); |
| 819 | #endif |
| 820 | } |
| 821 | |
| 822 | double Value::asDouble() const { |
| 823 | switch (type_) { |
no outgoing calls
no test coverage detected