Derive Debug on these small structs.

This commit is contained in:
Nick Lewycky 2019-07-26 11:12:13 -07:00
parent 8f417f3d59
commit 6cddc25ddd

View File

@ -110,13 +110,13 @@ impl Default for MemoryBoundCheckMode {
}
}
#[derive(Default)]
#[derive(Debug, Default)]
pub struct Features {
pub simd: bool,
}
/// Configuration data for the compiler
#[derive(Default)]
#[derive(Debug, Default)]
pub struct CompilerConfig {
/// Symbol information generated from emscripten; used for more detailed debug messages
pub symbol_map: Option<HashMap<u32, String>>,