diff options
| -rw-r--r-- | libcxx/include/functional | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libcxx/include/functional b/libcxx/include/functional index 73c6c590066..391a5b60a76 100644 --- a/libcxx/include/functional +++ b/libcxx/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 <class _G, class ..._BA> _LIBCPP_INLINE_VISIBILITY explicit __bind_r(_G&& __f, _BA&& ...__bound_args) |

