From c393d9eedd085e85a58a2aa537d8a3f534d7820c Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Tue, 30 Jul 2019 00:29:32 +0200 Subject: [PATCH] Missed --- sources/AudioBuffer.h | 1 - 1 file changed, 1 deletion(-) diff --git a/sources/AudioBuffer.h b/sources/AudioBuffer.h index e10ca082..be450b7f 100644 --- a/sources/AudioBuffer.h +++ b/sources/AudioBuffer.h @@ -109,7 +109,6 @@ public: int getNumFrames() const noexcept { return numFrames; } int getNumChannels() const noexcept { return NumChannels; } bool empty() const noexcept { return numFrames == 0; } - private: int numFrames { 0 }; std::array, NumChannels> buffers;