| 22 | class YYjsonStringResult : public StringResult<YYjsonStringResult> { |
| 23 | public: |
| 24 | std::string_view str_impl() const { return s; } |
| 25 | YYjsonStringResult() : s(nullptr) {} |
| 26 | ~YYjsonStringResult() { std::free(s); } |
| 27 | char *s; |
nothing calls this directly
no outgoing calls
no test coverage detected