mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02:00
InputCommon/ExpressionParser: Make ValidateArguments access existing
members instead of passing arguments.
This commit is contained in:
@ -769,7 +769,8 @@ private:
|
||||
}
|
||||
}
|
||||
|
||||
const auto argument_validation = func->SetArguments(std::move(args));
|
||||
func->SetArguments(std::move(args));
|
||||
const auto argument_validation = func->ValidateArguments();
|
||||
|
||||
if (std::holds_alternative<FunctionExpression::ExpectedArguments>(argument_validation))
|
||||
{
|
||||
|
Reference in New Issue
Block a user