We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65d1262 commit 4325a07Copy full SHA for 4325a07
orc-rt/include/orc-rt/move_only_function.h
@@ -59,9 +59,9 @@ class move_only_function<RetT(ArgTs...)> {
59
move_only_function() = default;
60
move_only_function(std::nullptr_t) {}
61
move_only_function(move_only_function &&) = default;
62
- move_only_function(const move_only_function &&) = delete;
+ move_only_function(const move_only_function &) = delete;
63
move_only_function &operator=(move_only_function &&) = default;
64
- move_only_function &operator=(const move_only_function &&) = delete;
+ move_only_function &operator=(const move_only_function &) = delete;
65
66
template <typename CallableT>
67
move_only_function(CallableT &&Callable)
0 commit comments