diff options
author | David Robillard <d@drobilla.net> | 2020-08-01 21:36:51 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-02 01:48:48 +0200 |
commit | 68eff78932e559cd4b71f0bc98276dec49f26b27 (patch) | |
tree | a241fa784e96e7674185b51c5307d6cbd486445a /ingen | |
parent | 7bf68773bc946f3e0fe4c25b05082ca4b068a593 (diff) | |
download | ingen-68eff78932e559cd4b71f0bc98276dec49f26b27.tar.gz ingen-68eff78932e559cd4b71f0bc98276dec49f26b27.tar.bz2 ingen-68eff78932e559cd4b71f0bc98276dec49f26b27.zip |
Remove redundant void argument
Diffstat (limited to 'ingen')
-rw-r--r-- | ingen/Library.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ingen/Library.hpp b/ingen/Library.hpp index 9b7184e5..bc6525cf 100644 --- a/ingen/Library.hpp +++ b/ingen/Library.hpp @@ -31,7 +31,7 @@ public: Library(const Library&) = delete; Library& operator=(const Library&) = delete; - using VoidFuncPtr = void (*)(void); + using VoidFuncPtr = void (*)(); VoidFuncPtr get_function(const char* const name); |