diff --git a/compiler/gen_wasm/src/wasm_module/sections.rs b/compiler/gen_wasm/src/wasm_module/sections.rs index bad1a172e9..a87cfa7865 100644 --- a/compiler/gen_wasm/src/wasm_module/sections.rs +++ b/compiler/gen_wasm/src/wasm_module/sections.rs @@ -1022,7 +1022,7 @@ impl Serialize for DataSegment<'_> { #[derive(Debug)] pub struct DataSection<'a> { count: u32, - pub bytes: Vec<'a, u8>, + pub bytes: Vec<'a, u8>, // public so backend.rs can calculate addr of first string } impl<'a> DataSection<'a> {