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

View File

@ -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(())