summaryrefslogtreecommitdiffstats
path: root/ingen/LV2Features.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-12-25 12:52:58 -0500
committerDavid Robillard <d@drobilla.net>2017-12-25 12:52:58 -0500
commit3f6d53e423bd809b9c8ae807d28c61e99ce0a2f2 (patch)
treec3aa29eb94e0a51146473505ec4eeac7447551a4 /ingen/LV2Features.hpp
parente2d1344c7c4960da1f57e656c87c4599d81988aa (diff)
downloadingen-3f6d53e423bd809b9c8ae807d28c61e99ce0a2f2.tar.gz
ingen-3f6d53e423bd809b9c8ae807d28c61e99ce0a2f2.tar.bz2
ingen-3f6d53e423bd809b9c8ae807d28c61e99ce0a2f2.zip
Make single parameter destructors explicit
Diffstat (limited to 'ingen/LV2Features.hpp')
-rw-r--r--ingen/LV2Features.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ingen/LV2Features.hpp b/ingen/LV2Features.hpp
index 91e57dc6..f8006fc4 100644
--- a/ingen/LV2Features.hpp
+++ b/ingen/LV2Features.hpp
@@ -53,7 +53,7 @@ protected:
class EmptyFeature : public Feature {
public:
- EmptyFeature(const char* uri) : _uri(uri) {}
+ explicit EmptyFeature(const char* uri) : _uri(uri) {}
const char* uri() const override { return _uri; }