summaryrefslogtreecommitdiffstats
path: root/ganv/Module.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-29 11:52:57 +0100
committerDavid Robillard <d@drobilla.net>2020-11-29 11:53:37 +0100
commit8c3e0c4d90fce56f59aab84f1f62aaf484706ce1 (patch)
tree06cfb0e27aaa946b2ebb2f911bff49c05e484a56 /ganv/Module.hpp
parent29d31fd1a61e860c69a5a8b8b32156cea9075ae8 (diff)
downloadganv-8c3e0c4d90fce56f59aab84f1f62aaf484706ce1.tar.gz
ganv-8c3e0c4d90fce56f59aab84f1f62aaf484706ce1.tar.bz2
ganv-8c3e0c4d90fce56f59aab84f1f62aaf484706ce1.zip
Fix Wunused-parameter warnings
Diffstat (limited to 'ganv/Module.hpp')
-rw-r--r--ganv/Module.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/ganv/Module.hpp b/ganv/Module.hpp
index f076a70..00d295d 100644
--- a/ganv/Module.hpp
+++ b/ganv/Module.hpp
@@ -59,7 +59,9 @@ public:
"label", name.c_str(),
"draggable", TRUE,
nullptr)))
- {}
+ {
+ (void)show_title;
+ }
template<typename P, typename C>
class iterator_base {