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

compilation error

writeengine/server/we_dataloader.cpp:894:22: error: arithmetic between floating-point type 'double' and enumeration type 'WriteEngine::WEDataLoader::<unnamed enum>' is deprecated [-Werror=enum-conversion]
This commit is contained in:
Sergei Golubchik
2022-11-02 18:40:46 +01:00
parent 513a22f3b2
commit 76dbbd031b

View File

@@ -208,11 +208,8 @@ class WEDataLoader : public Observer
};
public:
enum
{
MIN_QSIZE = 25,
MAX_QSIZE = 250
};
static const int MIN_QSIZE = 25;
static const int MAX_QSIZE = 250;
public:
SimpleSysLog* fpSysLog;