mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 14:54:47 +00:00
Merge pull request #2361 from rtfeldman/cleanup_builtins_Num.minmaxI128
Remove leftover TODOs from #2354
This commit is contained in:
commit
83f12b6e53
1 changed files with 0 additions and 2 deletions
|
@ -1453,7 +1453,6 @@ fn num_max_u64(symbol: Symbol, var_store: &mut VarStore) -> Def {
|
|||
fn num_min_i128(symbol: Symbol, var_store: &mut VarStore) -> Def {
|
||||
let int_var = var_store.fresh();
|
||||
let int_precision_var = var_store.fresh();
|
||||
// TODO: or `i128::MIN.into()` ?
|
||||
let body = int::<i128>(int_var, int_precision_var, i128::MIN);
|
||||
|
||||
let std = roc_builtins::std::types();
|
||||
|
@ -1469,7 +1468,6 @@ fn num_min_i128(symbol: Symbol, var_store: &mut VarStore) -> Def {
|
|||
};
|
||||
|
||||
Def {
|
||||
// TODO: or `None` ?
|
||||
annotation: Some(annotation),
|
||||
expr_var: int_var,
|
||||
loc_expr: Loc::at_zero(body),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue