diff options
author | Filip Gawin <[email protected]> | 2019-01-09 19:43:54 +0100 |
---|---|---|
committer | Filip Gawin <[email protected]> | 2019-01-09 19:43:54 +0100 |
commit | 6ddb2c36fc19f0bdcd46ff56536525325d4d3bc5 (patch) | |
tree | 6a3a30275aa10a898e064d89648e4971cd81f1a7 /Alc/effects/chorus.cpp | |
parent | 4169c6f37db4fa1cc8e2d052b377af479763a930 (diff) |
Remove redundant void argument list in function def
Diffstat (limited to 'Alc/effects/chorus.cpp')
-rw-r--r-- | Alc/effects/chorus.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/effects/chorus.cpp b/Alc/effects/chorus.cpp index 13a35c54..05216059 100644 --- a/Alc/effects/chorus.cpp +++ b/Alc/effects/chorus.cpp @@ -265,7 +265,7 @@ EffectState *ChorusStateFactory::create() } // namespace -EffectStateFactory *ChorusStateFactory_getFactory(void) +EffectStateFactory *ChorusStateFactory_getFactory() { static ChorusStateFactory ChorusFactory{}; return &ChorusFactory; @@ -384,7 +384,7 @@ DEFINE_ALEFFECT_VTABLE(ALchorus); /* Flanger is basically a chorus with a really short delay. They can both use * the same processing functions, so piggyback flanger on the chorus functions. */ -EffectStateFactory *FlangerStateFactory_getFactory(void) +EffectStateFactory *FlangerStateFactory_getFactory() { return ChorusStateFactory_getFactory(); } |