Skip to content
Snippets Groups Projects
Commit 9a2a3258 authored by Simon Oehrl's avatar Simon Oehrl
Browse files

Fix rvalue reference bug in cluster events

This commit fixes a bug that disallows lvalues from beeing passed to
the cluster event wrapper.
parent 8e569a3b
Branches
No related tags found
1 merge request!46Fix rvalue reference bug in cluster events
...@@ -91,7 +91,7 @@ public: ...@@ -91,7 +91,7 @@ public:
} }
} }
void Send(ArgTypes&&... Arguments) void Send(ArgTypes... Arguments)
{ {
checkf(Object != nullptr, TEXT("The event was not attached.")); checkf(Object != nullptr, TEXT("The event was not attached."));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment