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

Commit 25cf3b5b authored by Hao Chen's avatar Hao Chen
Browse files

Bugfix: add "override" explicitly to make the compiler happy

Test: build

Bug: 148877226
Change-Id: I90806ee2c2302ce9cc5dc8f82754aa807c2ec7ef
parent d6f4acf5
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: