| 3089 | |
| 3090 | #ifdef JSON_USE_CPPTL |
| 3091 | CppTL::ConstString Value::asConstString() const { |
| 3092 | unsigned len; |
| 3093 | char const* str; |
| 3094 | decodePrefixedString(allocated_, value_.string_, |
| 3095 | &len, &str); |
| 3096 | return CppTL::ConstString(str, len); |
| 3097 | } |
| 3098 | #endif |
| 3099 | |
| 3100 | Value::Int Value::asInt() const { |
nothing calls this directly
no test coverage detected