diff --git a/pool.h b/pool.h index b32f040..82b62d2 100644 --- a/pool.h +++ b/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; diff --git a/seed_file_management.h b/seed_file_management.h index 6e1b7b0..c448413 100644 --- a/seed_file_management.h +++ b/seed_file_management.h @@ -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;