| 374 | |
| 375 | class JsonBoolean final : public Value<Json::BOOL, bool> { |
| 376 | bool bool_value() const override { return m_value; } |
| 377 | public: |
| 378 | explicit JsonBoolean(bool value) : Value(value) {} |
| 379 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected