aboutsummaryrefslogtreecommitdiff
path: root/libbutl/mingw-thread.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbutl/mingw-thread.hxx')
-rw-r--r--libbutl/mingw-thread.hxx2
1 files changed, 1 insertions, 1 deletions
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;