summaryrefslogtreecommitdiffstats
path: root/ingen/Resource.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-23 22:05:51 +0200
committerDavid Robillard <d@drobilla.net>2018-09-23 22:05:51 +0200
commit407099d7a30d01799824c7d4f341e0095e752919 (patch)
treedfbfd05e00ebf98c625fb00c7bc2075077273221 /ingen/Resource.hpp
parente0e437c0fd970103685db2f1d0c83a9c461ad87f (diff)
downloadingen-407099d7a30d01799824c7d4f341e0095e752919.tar.gz
ingen-407099d7a30d01799824c7d4f341e0095e752919.tar.bz2
ingen-407099d7a30d01799824c7d4f341e0095e752919.zip
WIP: Fix unused parameter warningsfix-unused-parameter-warnings
Diffstat (limited to 'ingen/Resource.hpp')
-rw-r--r--ingen/Resource.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ingen/Resource.hpp b/ingen/Resource.hpp
index 94d92e12..0a1c5ec8 100644
--- a/ingen/Resource.hpp
+++ b/ingen/Resource.hpp
@@ -157,7 +157,7 @@ public:
* This can be used by derived classes to implement special behaviour for
* particular properties (e.g. ingen:value for ports).
*/
- virtual void on_property(const URI& uri, const Atom& value) {}
+ virtual void on_property(const URI&, const Atom&) {}
/** Hook called whenever a property value is removed.
*
@@ -166,7 +166,7 @@ public:
* This can be used by derived classes to implement special behaviour for
* particular properties (e.g. ingen:value for ports).
*/
- virtual void on_property_removed(const URI& uri, const Atom& value) {}
+ virtual void on_property_removed(const URI&, const Atom&) {}
/** Get the ingen type from a set of Properties.
*