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

Commit fa5d3eea authored by Chih-Hung Hsieh's avatar Chih-Hung Hsieh Committed by Android (Google) Code Review
Browse files

Merge "Add missing const qualifier to compile with clang/llvm." into mnc-dev

parents 6f421764 2f1e21d9
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() {