minor tweaks

This commit is contained in:
Brian Carroll 2022-11-16 21:25:16 +00:00
parent 24cef94fb5
commit ba99870de0
No known key found for this signature in database
GPG key ID: 5C7B2EC4101703C0
2 changed files with 3 additions and 4 deletions

View file

@ -242,7 +242,6 @@ pub struct WasmDebugSettings {
instructions: bool,
storage_map: bool,
pub keep_test_binary: bool,
pub skip_dead_code_elim: bool,
}
pub const DEBUG_SETTINGS: WasmDebugSettings = WasmDebugSettings {
@ -253,7 +252,6 @@ pub const DEBUG_SETTINGS: WasmDebugSettings = WasmDebugSettings {
instructions: false && cfg!(debug_assertions),
storage_map: false && cfg!(debug_assertions),
keep_test_binary: false && cfg!(debug_assertions),
skip_dead_code_elim: false && cfg!(debug_assertions),
};
#[cfg(test)]