mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 01:01:00 -04:00
fix MiniFunction not being usable with move-only parameters
This commit is contained in:
parent
5f8588ea97
commit
a91905bd4c
1 changed files with 5 additions and 5 deletions
|
@ -26,7 +26,7 @@ namespace geode::utils {
|
|||
explicit MiniFunctionState(Type func) : m_func(func) {}
|
||||
|
||||
Ret call(Args... args) const override {
|
||||
return const_cast<Type&>(m_func)(args...);
|
||||
return const_cast<Type&>(m_func)(std::forward<Args>(args)...);
|
||||
}
|
||||
|
||||
MiniFunctionStateBase<Ret, Args...>* clone() const override {
|
||||
|
@ -42,7 +42,7 @@ namespace geode::utils {
|
|||
explicit MiniFunctionStatePointer(Type func) : m_func(func) {}
|
||||
|
||||
Ret call(Args... args) const override {
|
||||
return const_cast<Type&>(*m_func)(args...);
|
||||
return const_cast<Type&>(*m_func)(std::forward<Args>(args)...);
|
||||
}
|
||||
|
||||
MiniFunctionStateBase<Ret, Args...>* clone() const override {
|
||||
|
@ -58,7 +58,7 @@ namespace geode::utils {
|
|||
explicit MiniFunctionStateMemberPointer(Type func) : m_func(func) {}
|
||||
|
||||
Ret call(Class self, Args... args) const override {
|
||||
return const_cast<Type&>(self->*m_func)(args...);
|
||||
return const_cast<Type&>(self->*m_func)(std::forward<Args>(args)...);
|
||||
}
|
||||
|
||||
MiniFunctionStateBase<Ret, Class, Args...>* clone() const override {
|
||||
|
@ -68,7 +68,7 @@ namespace geode::utils {
|
|||
|
||||
template <class Callable, class Ret, class... Args>
|
||||
concept MiniFunctionCallable = requires(Callable&& func, Args... args) {
|
||||
{ func(args...) } -> std::same_as<Ret>;
|
||||
{ func(std::forward<Args>(args)...) } -> std::same_as<Ret>;
|
||||
};
|
||||
|
||||
template <class Ret, class... Args>
|
||||
|
@ -131,7 +131,7 @@ namespace geode::utils {
|
|||
"any function, or one that has been moved"
|
||||
);
|
||||
}
|
||||
return m_state->call(args...);
|
||||
return m_state->call(std::forward<Args>(args)...);
|
||||
}
|
||||
|
||||
explicit operator bool() const {
|
||||
|
|
Loading…
Add table
Reference in a new issue