| 382 | const string &string_value() const override { return m_value; } |
| 383 | public: |
| 384 | explicit JsonString(const string &value) : Value(value) {} |
| 385 | explicit JsonString(string &&value) : Value(move(value)) {} |
| 386 | }; |
| 387 |
nothing calls this directly
no outgoing calls
no test coverage detected