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

Commit 3e7bf33e 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: cd8a78f7 am: d42b6f43

Change-Id: Ib9d41a2001ec6831cbd7e23dc81908dc32a041e7
parents fac4d919 d42b6f43
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: