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

Commit 2f1e21d9 authored by Chih-Hung Hsieh's avatar Chih-Hung Hsieh
Browse files

Add missing const qualifier to compile with clang/llvm.

BUG: 21298442
Change-Id: Iad211237fdb0128d8f4490419687bf1da1cd261c
parent 6246ade0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ public:
    RingBuffer() {}
    ~RingBuffer() {}

    constexpr size_t capacity() { return SIZE; }
    constexpr size_t capacity() const { return SIZE; }
    size_t size() { return mCount; }

    T& next() {