1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-06-26 03:01:33 +00:00

Squash a few warnings that snuck in by accident

This commit is contained in:
Alex Crichton
2018-10-10 16:09:24 -07:00
parent dd82a3e134
commit 4993e45fd9
3 changed files with 4 additions and 3 deletions
crates/cli-support/src/js
tests/wasm

@ -1701,7 +1701,7 @@ impl<'a, 'b> SubContext<'a, 'b> {
self.generate_enum(e);
}
for s in self.program.structs.iter() {
self.generate_struct(s);
self.generate_struct(s)?;
}
Ok(())