summaryrefslogtreecommitdiffstats
path: root/ingen/client
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-01 21:31:04 +0200
committerDavid Robillard <d@drobilla.net>2020-08-02 01:48:48 +0200
commitc0de5d2620cc1ee227ff2c64ef163e308ba19cb4 (patch)
treee0958e92ab78cb5f17f9073ab75faaec9912b847 /ingen/client
parent7b70b455e6199b508217b021d9a0dfc08f9a7794 (diff)
downloadingen-c0de5d2620cc1ee227ff2c64ef163e308ba19cb4.tar.gz
ingen-c0de5d2620cc1ee227ff2c64ef163e308ba19cb4.tar.bz2
ingen-c0de5d2620cc1ee227ff2c64ef163e308ba19cb4.zip
Use explicit default for trivial constructors
Diffstat (limited to 'ingen/client')
-rw-r--r--ingen/client/SigClientInterface.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ingen/client/SigClientInterface.hpp b/ingen/client/SigClientInterface.hpp
index e9c8cd0e..674714a3 100644
--- a/ingen/client/SigClientInterface.hpp
+++ b/ingen/client/SigClientInterface.hpp
@@ -42,7 +42,7 @@ class INGEN_API SigClientInterface : public ingen::Interface,
public INGEN_TRACKABLE
{
public:
- SigClientInterface() {}
+ SigClientInterface() = default;
URI uri() const override { return URI("ingen:/clients/sig"); }