pool: make ctor,dtor noexcept
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2022-01-02 07:55:58 +01:00
parent 78fc8ee9c0
commit 6d3059f39a
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

4
pool.h
View File

@ -11,8 +11,8 @@ namespace accumulator {
class Pool {
public:
Pool(){};
~Pool() = default;
Pool() noexcept {};
~Pool() noexcept = default;
// TODO(me): this public setter should be fixed?
auto set_id(unsigned int id) -> void {