Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8ce220e3 authored by Glenn Kasten's avatar Glenn Kasten
Browse files

Mark fields const if only set in constructor

Change-Id: Iacd06bb9efaf708cf965033be1f2297b58f7f75c
parent f4aaf1f5
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -72,9 +72,9 @@ protected:
    AudioResampler(const AudioResampler&);
    AudioResampler& operator=(const AudioResampler&);

    int32_t mBitDepth;
    int32_t mChannelCount;
    int32_t mSampleRate;
    const int32_t mBitDepth;
    const int32_t mChannelCount;
    const int32_t mSampleRate;
    int32_t mInSampleRate;
    AudioBufferProvider::Buffer mBuffer;
    union {