| 366 | class JsonInt final : public Value<Json::NUMBER, int> { |
| 367 | double number_value() const override { return m_value; } |
| 368 | int int_value() const override { return m_value; } |
| 369 | bool equals(const JsonValue * other) const override { return m_value == other->number_value(); } |
| 370 | bool less(const JsonValue * other) const override { return m_value < other->number_value(); } |
| 371 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected