Skip to content

Commit f8ebf7b

Browse files
committed
remove FIXME: rust-lang/rust#12825
1 parent 4c02e17 commit f8ebf7b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/bin/p023.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ fn compute(max: uint) -> uint {
2626
if s > max { break; }
2727
if !is_sum_abundant[s] {
2828
sum_of_sum_abundant += s;
29-
// FIXME: rust-lang/rust#12825
30-
// is_sum_abundant[s] = true;
31-
*is_sum_abundant.get_mut(s) = true;
29+
is_sum_abundant[s] = true;
3230
}
3331
}
3432
}

0 commit comments

Comments
 (0)