🐛 fix compilation error in MSVC

This commit is contained in:
ValKmjolnir 2024-06-05 23:42:56 +08:00
parent f83b693f65
commit ce9f28274e
1 changed files with 1 additions and 1 deletions

View File

@ -528,7 +528,7 @@ void vm::run(const codegen& gen,
#else
std::vector<nasal_vm_func> code;
for(const auto& i : gen.codes()) {
code.push_back(oprs[i.op]);
code.push_back(operand_function[i.op]);
imm.push_back(i.num);
}
while(code[ctx.pc]) {