summaryrefslogtreecommitdiffstats
path: root/tests/TestClient.hpp
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 /tests/TestClient.hpp
parent1d6abdf72ccce7964ccb6b7b5bbcd3d469a2b54c (diff)
downloadingen-d0579bbcd2142577ba3a18650cc9cadda8fafd84.tar.gz
ingen-d0579bbcd2142577ba3a18650cc9cadda8fafd84.tar.bz2
ingen-d0579bbcd2142577ba3a18650cc9cadda8fafd84.zip
Add missing override specifiers
Diffstat (limited to 'tests/TestClient.hpp')
-rw-r--r--tests/TestClient.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/TestClient.hpp b/tests/TestClient.hpp
index e76e4aa5..b23be973 100644
--- a/tests/TestClient.hpp
+++ b/tests/TestClient.hpp
@@ -28,7 +28,8 @@ class TestClient : public ingen::Interface
{
public:
explicit TestClient(Log& log) : _log(log) {}
- ~TestClient() {}
+
+ ~TestClient() override = default;
URI uri() const override { return URI("ingen:testClient"); }