summaryrefslogtreecommitdiff
path: root/src/instrumentparser.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2016-12-06 20:07:50 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2016-12-06 20:07:50 +0100
commite3ad180e9452be85ff35a10b4bb4a0dbf1ac11b4 (patch)
treef642b6f5cb61b6e8c85250ab317640ef384d810b /src/instrumentparser.h
parent15f98dfc9858cd11d616cf1dfdd1a1e50a7a48db (diff)
Make destructors virtual as appropriate.
Diffstat (limited to 'src/instrumentparser.h')
-rw-r--r--src/instrumentparser.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/instrumentparser.h b/src/instrumentparser.h
index 793bfb6..512f12f 100644
--- a/src/instrumentparser.h
+++ b/src/instrumentparser.h
@@ -37,6 +37,7 @@ class InstrumentParser
{
public:
InstrumentParser(Instrument &instrument);
+ virtual ~InstrumentParser() = default;
virtual int parseFile(const std::string& filename) override;