We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7c19c5 commit 16aeba1Copy full SHA for 16aeba1
src/include/souffle/SymbolTable.h
@@ -26,6 +26,8 @@ namespace souffle {
26
/** Interface of a generic SymbolTable iterator. */
27
class SymbolTableIteratorInterface {
28
public:
29
+ virtual ~SymbolTableIteratorInterface() {}
30
+
31
virtual const std::pair<const std::string, const std::size_t>& get() const = 0;
32
33
virtual bool equals(const SymbolTableIteratorInterface& other) = 0;
@@ -42,6 +44,8 @@ class SymbolTableIteratorInterface {
42
44
*/
43
45
class SymbolTable {
46
47
+ virtual ~SymbolTable() {}
48
49
/**
50
* @brief Iterator on a symbol table.
51
*
0 commit comments