From 496934a80360042b07e0291e61b4fb43296498eb Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Mon, 16 May 2011 16:19:01 +0000 Subject: [PATCH] Supply missing move ctor in __bind_r, though this one will eventually be defaulted git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@131408 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/functional | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/functional b/include/functional index 73c6c590..391a5b60 100644 --- a/include/functional +++ b/include/functional @@ -1704,6 +1704,10 @@ class __bind_r public: typedef _R result_type; + _LIBCPP_INLINE_VISIBILITY + __bind_r(__bind_r&& __b) + : base(_STD::move(__b)) {} + template _LIBCPP_INLINE_VISIBILITY explicit __bind_r(_G&& __f, _BA&& ...__bound_args)