| 3145 | |
| 3146 | #ifdef JSON_USE_CPPTL |
| 3147 | CppTL::ConstString Value::asConstString() const { |
| 3148 | unsigned len; |
| 3149 | char const* str; |
| 3150 | decodePrefixedString(allocated_, value_.string_, &len, &str); |
| 3151 | return CppTL::ConstString(str, len); |
| 3152 | } |
| 3153 | #endif |
| 3154 | |
| 3155 | Value::Int Value::asInt() const { |
nothing calls this directly
no test coverage detected