| 174 | int int_value() const override { return static_cast<int>(m_value); } |
| 175 | bool equals(const JsonValue * other) const override { return m_value == other->number_value(); } |
| 176 | bool less(const JsonValue * other) const override { return m_value < other->number_value(); } |
| 177 | public: |
| 178 | explicit JsonDouble(double value) : Value(value) {} |
| 179 | }; |
nothing calls this directly
no test coverage detected