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

Commit 1665d91e authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Bugfix: add "override" explicitly to make the compiler happy" into...

Merge "Bugfix: add "override" explicitly to make the compiler happy" into rvc-dev am: 8f3fee62 am: 72d170ff am: 104b9d33

Change-Id: Ia62892e59060e9922221865997763769c154b18b
parents 62c48c13 104b9d33
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: