| 2783 | |
| 2784 | #ifdef JSON_USE_CPPTL |
| 2785 | CppTL::ConstString Value::asConstString() const { |
| 2786 | unsigned len; |
| 2787 | char const* str; |
| 2788 | decodePrefixedString(allocated_, value_.string_, |
| 2789 | &len, &str); |
| 2790 | return CppTL::ConstString(str, len); |
| 2791 | } |
| 2792 | #endif |
| 2793 | |
| 2794 | Value::Int Value::asInt() const { |
nothing calls this directly
no test coverage detected