We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 960175e commit 4b6b8dfCopy full SHA for 4b6b8df
Sources/Generator.swift
@@ -88,7 +88,9 @@ public struct Generator: Equatable {
88
89
// Take 4 bytes from the hash, starting at the given byte offset
90
let truncatedHashPtr = ptr + Int(offset)
91
- let truncatedHash = truncatedHashPtr.withMemoryRebound(to: UInt32.self, capacity: 1, { $0.pointee })
+ let truncatedHash = truncatedHashPtr.withMemoryRebound(to: UInt32.self, capacity: 1) {
92
+ $0.pointee
93
+ }
94
return truncatedHash
95
}
96
0 commit comments