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

Commit cd8a78f7 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

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

Change-Id: I1ba1c16c15ea121fff71e38fe9acb6dff25e16a4
parents def82fe6 8f3fee62
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: