Skip to content

Commit

Permalink
fix(hax-lib): missing newline
Browse files Browse the repository at this point in the history
  • Loading branch information
W95Psp committed Apr 29, 2024
1 parent 1b836a9 commit 5fb2b0b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions hax-lib/src/int/bigint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ mod no_extraction {
);
BigInt { sign, data }
}

/// Constructs a [`num_bigint::BigInt`] out of a [`BigInt`].
pub(crate) fn get(self) -> num_bigint::BigInt {
num_bigint::BigInt::from_bytes_be(self.sign, &self.data)
Expand Down

0 comments on commit 5fb2b0b

Please sign in to comment.