You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
chore(codestyle): mark virtual methods as override
This commit is contained in:
committed by
Leonid Fedorov
parent
ad80ab40aa
commit
0ab03c7258
@ -33,9 +33,9 @@ class WF_min_max : public WindowFunctionType
|
||||
}
|
||||
|
||||
// pure virtual in base
|
||||
void operator()(int64_t b, int64_t e, int64_t c);
|
||||
WindowFunctionType* clone() const;
|
||||
void resetData();
|
||||
void operator()(int64_t b, int64_t e, int64_t c) override;
|
||||
WindowFunctionType* clone() const override;
|
||||
void resetData() override;
|
||||
|
||||
static boost::shared_ptr<WindowFunctionType> makeFunction(int, const string&, int, WindowFunctionColumn*);
|
||||
|
||||
@ -45,4 +45,3 @@ class WF_min_max : public WindowFunctionType
|
||||
};
|
||||
|
||||
} // namespace windowfunction
|
||||
|
||||
|
Reference in New Issue
Block a user