pool: ensure move constructor is noexcept

This commit is contained in:
Danny Robson 2018-07-04 14:03:38 +10:00
parent b79cc887a0
commit 935a3b950f

View File

@ -58,7 +58,7 @@ namespace util {
pool (const pool&) = delete; pool (const pool&) = delete;
pool& operator= (const pool&) = delete; pool& operator= (const pool&) = delete;
pool (pool&&); pool (pool&&) noexcept;
pool& operator= (pool&&); pool& operator= (pool&&);
explicit explicit