Mark parameters as const
This commit is contained in:
parent
3a20e74f40
commit
411f5527d4
8 changed files with 11 additions and 11 deletions
|
@ -15,7 +15,7 @@ void MacroEngine::AddCode(u32 method, u32 data) {
|
|||
uploaded_macro_code[method].push_back(data);
|
||||
}
|
||||
|
||||
void MacroEngine::Execute(u32 method, std::vector<u32>& parameters) {
|
||||
void MacroEngine::Execute(u32 method, const std::vector<u32>& parameters) {
|
||||
auto compiled_macro = macro_cache.find(method);
|
||||
if (compiled_macro != macro_cache.end()) {
|
||||
compiled_macro->second->Execute(parameters, method);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue