summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-02 00:07:34 +0200
committerDavid Robillard <d@drobilla.net>2020-08-02 01:48:48 +0200
commitd0579bbcd2142577ba3a18650cc9cadda8fafd84 (patch)
treebbda4fb98cf3faa50775c3e9fe5c33f522c4b5f7 /include
parent1d6abdf72ccce7964ccb6b7b5bbcd3d469a2b54c (diff)
downloadingen-d0579bbcd2142577ba3a18650cc9cadda8fafd84.tar.gz
ingen-d0579bbcd2142577ba3a18650cc9cadda8fafd84.tar.bz2
ingen-d0579bbcd2142577ba3a18650cc9cadda8fafd84.zip
Add missing override specifiers
Diffstat (limited to 'include')
-rw-r--r--include/ingen/client/BlockModel.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ingen/client/BlockModel.hpp b/include/ingen/client/BlockModel.hpp
index d003b7d1..5e17d31d 100644
--- a/include/ingen/client/BlockModel.hpp
+++ b/include/ingen/client/BlockModel.hpp
@@ -46,7 +46,7 @@ class INGEN_API BlockModel : public ObjectModel
{
public:
BlockModel(const BlockModel& copy);
- virtual ~BlockModel();
+ ~BlockModel() override;
GraphType graph_type() const override { return Node::GraphType::BLOCK; }