Skip to content

Commit

Permalink
Remove unreachable patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
cowuake committed Mar 24, 2024
1 parent b855d6e commit 80f1431
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions schemius/src/core/builtins.rs
Original file line number Diff line number Diff line change
Expand Up @@ -669,8 +669,7 @@ macro_rules! fn_compute_sum_prod {
}

Ok(SExpr::Number(res))
},
_ => Err(String::from("???")),
}
}
}
)*}
Expand Down Expand Up @@ -701,7 +700,6 @@ macro_rules! fn_compute_diff_quot {

Ok(SExpr::Number(res))
}
_ => Err(String::from("???")),
}
}
)*}
Expand Down

0 comments on commit 80f1431

Please sign in to comment.