summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-10-10 11:36:58 +0100
committerCarl Hetherington <cth@carlh.net>2015-10-10 11:36:58 +0100
commit5aa14b0738e6bb63df70c9baff288a33476c386a (patch)
tree6b8e5c04f8a37f78189508dd3aae88e6eff99837 /src
parentd456cc07a466329a4c07e5c13322b34814e6489e (diff)
Missing virtual destructor.
Diffstat (limited to 'src')
-rw-r--r--src/lib/log_entry.h1
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;