fix: -Wextra-semi

This commit is contained in:
surtur 2022-02-03 00:49:40 +01:00
parent a3daa722da
commit 8cafbc7706
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D
2 changed files with 2 additions and 2 deletions

2
pool.h
View File

@ -12,7 +12,7 @@ class Pool {
public: public:
static constexpr const uint8_t NUM_OF_POOLS{32}; static constexpr const uint8_t NUM_OF_POOLS{32};
Pool() noexcept {}; Pool() noexcept {}
Pool(const Pool&) = delete; // no copy Pool(const Pool&) = delete; // no copy
Pool(Pool&) = delete; Pool(Pool&) = delete;
Pool& operator=(const Pool&) = delete; Pool& operator=(const Pool&) = delete;

View File

@ -20,7 +20,7 @@ public:
std::string seed_f_path{"./.fortuna.seed"}; std::string seed_f_path{"./.fortuna.seed"};
std::size_t seed_f_length{64}; std::size_t seed_f_length{64};
conf(){}; conf(){}
}; };
auto is_job_running() const -> bool; auto is_job_running() const -> bool;