2
0
mirror of https://github.com/boostorg/compat.git synced 2026-01-19 04:02:16 +00:00

remove erroneous rvalue qualification

This commit is contained in:
Christian Mazakas
2024-12-17 11:20:57 -08:00
parent 736b381d13
commit c3bd40856d

View File

@@ -131,7 +131,7 @@ public:
function_ref_base(const function_ref_base&) noexcept = default;
function_ref_base& operator=(const function_ref_base&) noexcept = default;
R operator()(Args&&... args) const noexcept(NoEx) { return this->invoke_(thunk_, std::forward<Args>(args)...); }
R operator()(Args... args) const noexcept(NoEx) { return this->invoke_(thunk_, std::forward<Args>(args)...); }
};
} // namespace detail