Skip to content

Commit

Permalink
restore parens
Browse files Browse the repository at this point in the history
  • Loading branch information
KodrAus committed Jan 19, 2025
1 parent cfc627b commit 7a96ae2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ impl Uuid {
/// );
/// ```
pub const fn from_u64_pair(high_bits: u64, low_bits: u64) -> Self {
Uuid::from_u128((high_bits as u128 << 64) | low_bits as u128)
Uuid::from_u128(((high_bits as u128) << 64) | low_bits as u128)
}

/// Creates a UUID using the supplied bytes.
Expand Down

0 comments on commit 7a96ae2

Please sign in to comment.