diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-10-10 11:36:58 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-10-10 11:36:58 +0100 |
| commit | 5aa14b0738e6bb63df70c9baff288a33476c386a (patch) | |
| tree | 6b8e5c04f8a37f78189508dd3aae88e6eff99837 | |
| parent | d456cc07a466329a4c07e5c13322b34814e6489e (diff) | |
Missing virtual destructor.
| -rw-r--r-- | src/lib/log_entry.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/log_entry.h b/src/lib/log_entry.h index b94637a33..10a69c416 100644 --- a/src/lib/log_entry.h +++ b/src/lib/log_entry.h @@ -35,6 +35,7 @@ public: static const int TYPE_TIMING; LogEntry (int type); + virtual ~LogEntry () {} virtual std::string message () const = 0; |
