1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

c++17 fix

This commit is contained in:
Leonid Fedorov
2021-10-26 15:02:34 +00:00
parent 56d8a33f0b
commit 1973168e03
3 changed files with 18 additions and 20 deletions

View File

@ -261,7 +261,7 @@ typedef FdCountEntry FdCountEntry_t;
struct fdCountCompare
{
bool operator() (const FdCountEntry_t& lhs, const FdCountEntry_t& rhs)
bool operator() (const FdCountEntry_t& lhs, const FdCountEntry_t& rhs) const
{
return lhs.cnt > rhs.cnt;
}