Skip to content

Commit 16aeba1

Browse files
committed
virtual destructors
1 parent c7c19c5 commit 16aeba1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/include/souffle/SymbolTable.h

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ namespace souffle {
2626
/** Interface of a generic SymbolTable iterator. */
2727
class SymbolTableIteratorInterface {
2828
public:
29+
virtual ~SymbolTableIteratorInterface() {}
30+
2931
virtual const std::pair<const std::string, const std::size_t>& get() const = 0;
3032

3133
virtual bool equals(const SymbolTableIteratorInterface& other) = 0;
@@ -42,6 +44,8 @@ class SymbolTableIteratorInterface {
4244
*/
4345
class SymbolTable {
4446
public:
47+
virtual ~SymbolTable() {}
48+
4549
/**
4650
* @brief Iterator on a symbol table.
4751
*

0 commit comments

Comments
 (0)