show/hide this revision's text 2 destructors don't have a return type.

You don't need to make the destructor abstract, just give it a empty implementation:

virtual void ~criterion() { }

This way you are not forced to implement it in every child class, but still each of them will have a (inherited) virtual destructor.

show/hide this revision's text 1

You don't need to make the destructor abstract, just give it a empty implementation:

virtual void ~criterion() { }

This way you are not forced to implement it in every child class, but still each of them will have a (inherited) virtual destructor.