Skip to content

Commit 7a96ae2

Browse files
committed
restore parens
1 parent cfc627b commit 7a96ae2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ impl Uuid {
252252
/// );
253253
/// ```
254254
pub const fn from_u64_pair(high_bits: u64, low_bits: u64) -> Self {
255-
Uuid::from_u128((high_bits as u128 << 64) | low_bits as u128)
255+
Uuid::from_u128(((high_bits as u128) << 64) | low_bits as u128)
256256
}
257257

258258
/// Creates a UUID using the supplied bytes.

0 commit comments

Comments
 (0)