From 3b0daafa0b713c6621746969dc9ffdf65b1158f6 Mon Sep 17 00:00:00 2001 From: Cristian Morales Vega Date: Tue, 12 Feb 2019 17:22:15 +0000 Subject: [PATCH] Make the executor_work_guard move constructor noexcept. --- asio/include/asio/executor_work_guard.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asio/include/asio/executor_work_guard.hpp b/asio/include/asio/executor_work_guard.hpp index c08e00a3..3923d28e 100644 --- a/asio/include/asio/executor_work_guard.hpp +++ b/asio/include/asio/executor_work_guard.hpp @@ -55,7 +55,7 @@ public: #if defined(ASIO_HAS_MOVE) || defined(GENERATING_DOCUMENTATION) /// Move constructor. - executor_work_guard(executor_work_guard&& other) + executor_work_guard(executor_work_guard&& other) ASIO_NOEXCEPT : executor_(ASIO_MOVE_CAST(Executor)(other.executor_)), owns_(other.owns_) {