| 721 | |
| 722 | #ifdef JSON_USE_CPPTL |
| 723 | CppTL::ConstString Value::asConstString() const { |
| 724 | unsigned len; |
| 725 | char const* str; |
| 726 | decodePrefixedString(allocated_, value_.string_, |
| 727 | &len, &str); |
| 728 | return CppTL::ConstString(str, len); |
| 729 | } |
| 730 | #endif |
| 731 | |
| 732 | Value::Int Value::asInt() const { |
nothing calls this directly
no test coverage detected