This commit is contained in:
parent
a3daa722da
commit
8cafbc7706
2
pool.h
2
pool.h
@ -12,7 +12,7 @@ class Pool {
|
||||
public:
|
||||
static constexpr const uint8_t NUM_OF_POOLS{32};
|
||||
|
||||
Pool() noexcept {};
|
||||
Pool() noexcept {}
|
||||
Pool(const Pool&) = delete; // no copy
|
||||
Pool(Pool&) = delete;
|
||||
Pool& operator=(const Pool&) = delete;
|
||||
|
@ -20,7 +20,7 @@ public:
|
||||
std::string seed_f_path{"./.fortuna.seed"};
|
||||
std::size_t seed_f_length{64};
|
||||
|
||||
conf(){};
|
||||
conf(){}
|
||||
};
|
||||
|
||||
auto is_job_running() const -> bool;
|
||||
|
Reference in New Issue
Block a user