1
0
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:
Aleksei Antipovskii
2024-09-12 12:27:02 +02:00
committed by Leonid Fedorov
parent ad80ab40aa
commit 0ab03c7258
303 changed files with 4085 additions and 4886 deletions

View File

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