Skip to content
Snippets Groups Projects
Commit 1462c694 authored by Thorsten Wißmann's avatar Thorsten Wißmann
Browse files

Mark IFormula destructor as virtual

This avoids compile warnings and ensures correct behaviour for future
IFormula subclasses implementing a destructor.
parent f791f9ff
No related branches found
No related tags found
No related merge requests found
......@@ -41,6 +41,7 @@ class IFormula {
virtual bdd modal(bdd *b, int n, int m)=0;
virtual bool satisfiability(int option)=0;
virtual void clear_maps()=0;
virtual ~IFormula() { };
};
template<class ModalValueType>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment