| 93 | |
| 94 | template <typename T> |
| 95 | class StringResult { |
| 96 | public: |
| 97 | std::string_view str() const { |
| 98 | return static_cast<const T *>(this)->str_impl(); |
| 99 | } |
| 100 | }; |
| 101 | |
| 102 | template <typename Json, typename PR> |
| 103 | class JsonBase { |
nothing calls this directly
no outgoing calls
no test coverage detected