aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/effects/autowah.cpp
diff options
context:
space:
mode:
authorFilip Gawin <[email protected]>2019-01-09 19:43:54 +0100
committerFilip Gawin <[email protected]>2019-01-09 19:43:54 +0100
commit6ddb2c36fc19f0bdcd46ff56536525325d4d3bc5 (patch)
tree6a3a30275aa10a898e064d89648e4971cd81f1a7 /Alc/effects/autowah.cpp
parent4169c6f37db4fa1cc8e2d052b377af479763a930 (diff)
Remove redundant void argument list in function def
Diffstat (limited to 'Alc/effects/autowah.cpp')
-rw-r--r--Alc/effects/autowah.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/autowah.cpp b/Alc/effects/autowah.cpp
index 19e287fd..f7d07fe2 100644
--- a/Alc/effects/autowah.cpp
+++ b/Alc/effects/autowah.cpp
@@ -203,7 +203,7 @@ struct AutowahStateFactory final : public EffectStateFactory {
EffectState *AutowahStateFactory::create()
{ return new ALautowahState{}; }
-EffectStateFactory *AutowahStateFactory_getFactory(void)
+EffectStateFactory *AutowahStateFactory_getFactory()
{
static AutowahStateFactory AutowahFactory{};
return &AutowahFactory;