We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfc627b commit 7a96ae2Copy full SHA for 7a96ae2
1 file changed
src/builder.rs
@@ -252,7 +252,7 @@ impl Uuid {
252
/// );
253
/// ```
254
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)
+ Uuid::from_u128(((high_bits as u128) << 64) | low_bits as u128)
256
}
257
258
/// Creates a UUID using the supplied bytes.
0 commit comments