1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-28 20:02:00 +03:00

Updated wsrep-API, added -Wconversion to compiler flags, fixed errors.

This commit is contained in:
Teemu Ollakka
2019-10-10 13:54:05 +03:00
parent 58aa3e821f
commit 477a71dd46
18 changed files with 107 additions and 88 deletions

View File

@ -28,6 +28,8 @@
#include "db_client_service.hpp"
#include "db_high_priority_service.hpp"
#include <random>
namespace db
{
class server;
@ -77,6 +79,8 @@ namespace db
db::client_state client_state_;
db::client_service client_service_;
db::storage_engine::transaction se_trx_;
std::random_device random_device_;
std::default_random_engine random_engine_;
struct stats stats_;
};
}