mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-12 12:48:59 +00:00
Supply missing move ctor in __bind_r, though this one will eventually be defaulted
llvm-svn: 131408
This commit is contained in:
parent
15c34d48ba
commit
07de7bcaa0
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user