refactor(furvm): add id to module

This commit is contained in:
2026-06-06 12:53:31 +02:00
parent 5407f8cda7
commit 4895489511
4 changed files with 23 additions and 15 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ static constexpr std::array<furvm::byte, 1> s_bytecode = {
int main(void) {
furvm::context context;
auto mainModule = context.emplace(s_bytecode.begin(), s_bytecode.end());
const auto& mainModule = context.emplace(s_bytecode.begin(), s_bytecode.end());
return 0;
}