Dict: make the destructor non-virtual

This commit is contained in:
Max Kellermann 2020-02-04 10:47:25 +01:00
parent b4966858ce
commit 05f692995d

View file

@ -23,7 +23,7 @@ class Dictionary {
public: public:
explicit Dictionary(dict_order ordering = UNORDERED, explicit Dictionary(dict_order ordering = UNORDERED,
int initial_size = 0); int initial_size = 0);
virtual ~Dictionary(); ~Dictionary();
// Member functions for looking up a key, inserting/changing its // Member functions for looking up a key, inserting/changing its
// contents, and deleting it. These come in two flavors: one // contents, and deleting it. These come in two flavors: one