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

Commit 8f3fee62 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Bugfix: add "override" explicitly to make the compiler happy" into rvc-dev

parents ce3f17e6 25cf3b5b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -206,7 +206,7 @@ private:
        InternalPool(VehiclePropertyType type, size_t vectorSize)
            : mPropType(type), mVectorSize(vectorSize) {}

        RecyclableType obtain() {
        RecyclableType obtain() override {
            return ObjectPool<VehiclePropValue>::obtain();
        }
    protected: