From c6c224a78715d5e2c532fe318325fbca8e70e701 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 9 Dec 2022 20:00:08 +0300 Subject: Add noexcept to move constructors and move assignment operators --- libbutl/mingw-thread.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbutl/mingw-thread.hxx') diff --git a/libbutl/mingw-thread.hxx b/libbutl/mingw-thread.hxx index b308dde..66f98aa 100644 --- a/libbutl/mingw-thread.hxx +++ b/libbutl/mingw-thread.hxx @@ -154,7 +154,7 @@ namespace mingw_stdthread native_handle_type native_handle() const {return mHandle;} thread(): mHandle(kInvalidHandle), mThreadId(){} - thread(thread&& other) + thread(thread&& other) noexcept :mHandle(other.mHandle), mThreadId(other.mThreadId) { other.mHandle = kInvalidHandle; -- cgit v1.1