From 6d3059f39a4246ff69b48ab15f213cc00f5bd4fe Mon Sep 17 00:00:00 2001 From: surtur Date: Sun, 2 Jan 2022 07:55:58 +0100 Subject: [PATCH] pool: make ctor,dtor noexcept --- pool.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pool.h b/pool.h index 76594df..bce398a 100644 --- a/pool.h +++ b/pool.h @@ -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 {