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

Commit 79740b30 authored by Glenn Kasten's avatar Glenn Kasten Committed by Android Git Automerger
Browse files

am 52ee6350: Merge "Mark fields const if only set in constructor"

* commit '52ee6350':
  Mark fields const if only set in constructor
parents 516da340 52ee6350
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 {