Skip to content

Commit

Permalink
Remove redundant annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
lycantropos committed Nov 19, 2024
1 parent a8df373 commit a65abfc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/big_int/checked_pow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ where
for index in 1..WINDOW_BASE {
cache[index] = &cache[index - 1] * self;
}
let exponent_window_digits: Vec<WindowDigit> =
let exponent_window_digits =
WindowDigit::lesser_binary_base_from_binary_digits(
&exponent.digits,
DIGIT_BITNESS,
Expand Down
2 changes: 1 addition & 1 deletion src/big_int/checked_pow_rem_euclid.rs
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ where
.unwrap_unchecked()
};
}
let exponent_window_digits: Vec<WindowDigit> =
let exponent_window_digits =
WindowDigit::lesser_binary_base_from_binary_digits(
&exponent.digits,
DIGIT_BITNESS,
Expand Down

0 comments on commit a65abfc

Please sign in to comment.