summaryrefslogtreecommitdiffstats
path: root/ingen/types.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'ingen/types.hpp')
-rw-r--r--ingen/types.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ingen/types.hpp b/ingen/types.hpp
index 5e0d7506..7bb73441 100644
--- a/ingen/types.hpp
+++ b/ingen/types.hpp
@@ -25,7 +25,7 @@
namespace ingen {
template <class T>
-void NullDeleter(T* ptr) {}
+void NullDeleter(T*) {}
template <class T>
struct FreeDeleter { void operator()(T* const ptr) { free(ptr); } };