diff options
author | Jan Niklas Hasse <[email protected]> | 2022-02-01 01:02:10 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-01-31 16:02:10 -0800 |
commit | 7d2de711c86dd3c177bb6323b1e3fcc42d0a2998 (patch) | |
tree | 32f19dc446ddd431b6170fd25839125aae44df05 /core/bformatdec.h | |
parent | ef529a586eea897f3534c07ca28e39daabc59988 (diff) |
Remove extra ';' after member function definition (#652)
Found using -Wextra-semi warning.
Diffstat (limited to 'core/bformatdec.h')
-rw-r--r-- | core/bformatdec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/bformatdec.h b/core/bformatdec.h index 0231da1e..7a27a5a4 100644 --- a/core/bformatdec.h +++ b/core/bformatdec.h @@ -50,7 +50,7 @@ public: const al::span<const ChannelDec> coeffslf, const float xover_f0norm, std::unique_ptr<FrontStablizer> stablizer); - bool hasStablizer() const noexcept { return mStablizer != nullptr; }; + bool hasStablizer() const noexcept { return mStablizer != nullptr; } /* Decodes the ambisonic input to the given output channels. */ void process(const al::span<FloatBufferLine> OutBuffer, const FloatBufferLine *InSamples, |