| 3190 | |
| 3191 | #ifdef JSON_USE_CPPTL |
| 3192 | CppTL::ConstString Value::asConstString() const { |
| 3193 | unsigned len; |
| 3194 | char const* str; |
| 3195 | decodePrefixedString(allocated_, value_.string_, |
| 3196 | &len, &str); |
| 3197 | return CppTL::ConstString(str, len); |
| 3198 | } |
| 3199 | #endif |
| 3200 | |
| 3201 | Value::Int Value::asInt() const { |
nothing calls this directly
no test coverage detected