| 3051 | |
| 3052 | #ifdef JSON_USE_CPPTL |
| 3053 | CppTL::ConstString Value::asConstString() const { |
| 3054 | unsigned len; |
| 3055 | char const *str; |
| 3056 | decodePrefixedString(isAllocated(), value_.string_, &len, &str); |
| 3057 | return CppTL::ConstString(str, len); |
| 3058 | } |
| 3059 | #endif |
| 3060 | |
| 3061 | Value::Int Value::asInt() const { |
nothing calls this directly
no test coverage detected