Skip to content
Snippets Groups Projects
Unverified Commit 53fbf8e2 authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #4523 from lioncash/self-assign

macro-interpreter: Resolve -Wself-assign-field warning
parents 3ea3de4e 34ec6423
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,6 @@ void MacroInterpreterImpl::Execute(const std::vector<u32>& parameters, u32 metho
this->parameters = std::make_unique<u32[]>(num_parameters);
}
std::memcpy(this->parameters.get(), parameters.data(), num_parameters * sizeof(u32));
this->num_parameters = num_parameters;
// Execute the code until we hit an exit condition.
bool keep_executing = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment