aboutsummaryrefslogtreecommitdiff
path: root/libbutl/move-only-function.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbutl/move-only-function.hxx')
-rw-r--r--libbutl/move-only-function.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/libbutl/move-only-function.hxx b/libbutl/move-only-function.hxx
index 846ef25..e5cfe51 100644
--- a/libbutl/move-only-function.hxx
+++ b/libbutl/move-only-function.hxx
@@ -124,7 +124,10 @@ namespace butl
return f (std::forward<A> (args)...);
}
- wrapper (wrapper&& w): f (std::move (w.f)) {}
+ wrapper (wrapper&& w)
+ noexcept (std::is_nothrow_move_constructible<F>::value)
+ : f (std::move (w.f)) {}
+
wrapper& operator= (wrapper&&) = delete; // Shouldn't be needed.
~wrapper () {f.~F ();}