Fix a warning when testing with --release

This commit is contained in:
Richard Feldman 2022-08-03 22:59:50 -04:00
parent d9992e26b1
commit 7f65298cf5
No known key found for this signature in database
GPG key ID: 7E4127D1E4241798

View file

@ -35,9 +35,9 @@ fn promote_expr_to_module(src: &str) -> String {
}
fn write_final_wasm() -> bool {
use roc_debug_flags::{dbg_do, ROC_WRITE_FINAL_WASM};
use roc_debug_flags::dbg_do;
dbg_do!(ROC_WRITE_FINAL_WASM, {
dbg_do!(roc_debug_flags::ROC_WRITE_FINAL_WASM, {
return true;
});