From 935a3b950f028d3ff7e1850cce0e4527743f9416 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Wed, 4 Jul 2018 14:03:38 +1000 Subject: [PATCH] pool: ensure move constructor is noexcept --- pool.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pool.hpp b/pool.hpp index c7a914c2..d5685636 100644 --- a/pool.hpp +++ b/pool.hpp @@ -58,7 +58,7 @@ namespace util { pool (const pool&) = delete; pool& operator= (const pool&) = delete; - pool (pool&&); + pool (pool&&) noexcept; pool& operator= (pool&&); explicit