Commit 1bede3ef by Martin Salinas Committed by GitHub

Removed unused argument warning (#36)

As argument rhs is not being used in that equals (should the equals function always return false), I added that flag so the compiler skips that warning.
parent 0f03fc31
......@@ -58,7 +58,7 @@ namespace detail
virtual void str(std::ostream &) const = 0;
virtual std::optional<row_handle> single() const { return {}; };
virtual bool equals(const condition_impl *rhs) const { return false; }
virtual bool equals([[maybe_unused]] const condition_impl *rhs) const { return false; }
};
struct all_condition_impl : public condition_impl
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment