Remove extra ';' after member function definition (#652)

Found using -Wextra-semi warning.
master
Jan Niklas Hasse 2022-02-01 01:02:10 +01:00 committed by GitHub
parent ef529a586e
commit 7d2de711c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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,