diff options
author | David Robillard <d@drobilla.net> | 2020-08-02 00:07:34 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-02 01:48:48 +0200 |
commit | d0579bbcd2142577ba3a18650cc9cadda8fafd84 (patch) | |
tree | bbda4fb98cf3faa50775c3e9fe5c33f522c4b5f7 /tests | |
parent | 1d6abdf72ccce7964ccb6b7b5bbcd3d469a2b54c (diff) | |
download | ingen-d0579bbcd2142577ba3a18650cc9cadda8fafd84.tar.gz ingen-d0579bbcd2142577ba3a18650cc9cadda8fafd84.tar.bz2 ingen-d0579bbcd2142577ba3a18650cc9cadda8fafd84.zip |
Add missing override specifiers
Diffstat (limited to 'tests')
-rw-r--r-- | tests/TestClient.hpp | 3 |
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"); } |