removed unused code

This commit is contained in:
2025-02-21 07:29:41 +01:00
parent 0eb1ae9fe8
commit d0b3ce4231
10 changed files with 141 additions and 136 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ using namespace matador;
struct person {
virtual ~person() = default;
template < typename Operator >
void process(Operator &op) {}
void process(Operator &/*op*/) {}
};
struct student final : person {};