Fix some unused args

This commit is contained in:
Richard Feldman 2021-08-20 23:12:32 -04:00
parent afd5f1582b
commit a0fe80f202

View file

@ -2222,7 +2222,7 @@ fn ext_var_is_empty_record(subs: &Subs, ext_var: Variable) -> bool {
}
#[cfg(not(debug_assertions))]
fn ext_var_is_empty_record(subs: &Subs, ext_var: Variable) -> bool {
fn ext_var_is_empty_record(_subs: &Subs, _ext_var: Variable) -> bool {
// This should only ever be used in debug_assert! macros
unreachable!();
}