📝 change span data from u32 to u64

This commit is contained in:
ValKmjolnir
2024-05-12 19:34:05 +08:00
parent eed59cfe07
commit 8e38764df0
17 changed files with 67 additions and 56 deletions

View File

@@ -260,7 +260,7 @@ void dbg::run(
std::vector<u32> code;
std::vector<u16> code_file_index;
std::vector<u32> code_line;
for(auto& i : gen.codes()) {
for(const auto& i : gen.codes()) {
code.push_back(i.op);
code_file_index.push_back(i.fidx);
code_line.push_back(i.line);