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

This commit is contained in:
TreeHugger Robot
2020-03-10 20:58:52 +00:00
committed by Android (Google) Code Review

View File

@@ -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: