Fix Wasm backend compile error in Web REPL build

This commit is contained in:
Brian Carroll 2023-11-06 08:08:00 +00:00
parent eb76ec4e90
commit a2f4d418bb
No known key found for this signature in database
GPG key ID: 5C7B2EC4101703C0

View file

@ -75,7 +75,7 @@ pub struct CodeBuilder<'a> {
import_relocations: Vec<'a, (usize, u32)>,
/// Keep track of which local variables have been set
set_locals: BitVec<u64>,
set_locals: BitVec<u32>,
}
#[allow(clippy::new_without_default)]