Fix --release warnings

This commit is contained in:
Richard Feldman 2022-05-15 21:50:49 -04:00
parent 262b2fd24e
commit 9bc1e320dc
No known key found for this signature in database
GPG key ID: 7E4127D1E4241798
6 changed files with 70 additions and 37 deletions

View file

@ -8,7 +8,9 @@ use roc_can::constraint::Constraint::{self, *};
use roc_can::constraint::{Constraints, Cycle, LetConstraint, OpportunisticResolve};
use roc_can::expected::{Expected, PExpected};
use roc_collections::all::MutMap;
use roc_debug_flags::{dbg_do, ROC_VERIFY_RIGID_LET_GENERALIZED};
use roc_debug_flags::dbg_do;
#[cfg(debug_assertions)]
use roc_debug_flags::ROC_VERIFY_RIGID_LET_GENERALIZED;
use roc_error_macros::internal_error;
use roc_module::ident::TagName;
use roc_module::symbol::Symbol;