Skip to content

Commit 9f353cc

Browse files
committed
style tweaks (2)
1 parent 23ffb2a commit 9f353cc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/Overlays/_Testing_WinSDK/Support/Additions/GUIDAdditions.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ public import WinSDK
1818
@_spi(_)
1919
extension GUID: @retroactive Equatable, @retroactive Hashable {
2020
/// This GUID as an integer.
21-
var uint128Value: UInt128 {
21+
private var _uint128Value: UInt128 {
2222
withUnsafeBytes(of: self) { buffer in
2323
buffer.baseAddress!.loadUnaligned(as: UInt128.self)
2424
}
2525
}
2626

2727
public static func ==(lhs: Self, rhs: Self) -> Bool {
28-
lhs.uint128Value == rhs.uint128Value
28+
lhs._uint128Value == rhs._uint128Value
2929
}
3030

3131
public func hash(into hasher: inout Hasher) {
32-
hasher.combine(uint128Value)
32+
hasher.combine(_uint128Value)
3333
}
3434
}
3535
#endif

0 commit comments

Comments
 (0)