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/fshifter.cpp | |
parent | 4169c6f37db4fa1cc8e2d052b377af479763a930 (diff) |
Remove redundant void argument list in function def
Diffstat (limited to 'Alc/effects/fshifter.cpp')
-rw-r--r-- | Alc/effects/fshifter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/effects/fshifter.cpp b/Alc/effects/fshifter.cpp index 994dd90c..55ff4247 100644 --- a/Alc/effects/fshifter.cpp +++ b/Alc/effects/fshifter.cpp @@ -46,7 +46,7 @@ using complex_d = std::complex<double>; /* Define a Hann window, used to filter the HIL input and output. */ /* Making this constexpr seems to require C++14. */ -std::array<ALdouble,HIL_SIZE> InitHannWindow(void) +std::array<ALdouble,HIL_SIZE> InitHannWindow() { std::array<ALdouble,HIL_SIZE> ret; /* Create lookup table of the Hann window for the desired size, i.e. HIL_SIZE */ @@ -211,7 +211,7 @@ struct FshifterStateFactory final : public EffectStateFactory { EffectState *FshifterStateFactory::create() { return new ALfshifterState{}; } -EffectStateFactory *FshifterStateFactory_getFactory(void) +EffectStateFactory *FshifterStateFactory_getFactory() { static FshifterStateFactory FshifterFactory{}; return &FshifterFactory; |