Skip to content

Commit 4f9df4d

Browse files
mbrandonwgithub-actions[bot]
authored andcommitted
Run swift-format
1 parent 178b021 commit 4f9df4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/ComposableArchitecture/Internal/AreOrderedSetsDuplicates.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import OrderedCollections
55
func areOrderedSetsDuplicates<T>(_ lhs: OrderedSet<T>, _ rhs: OrderedSet<T>) -> Bool {
66
guard lhs.count == rhs.count
77
else { return false }
8-
8+
99
return withUnsafePointer(to: lhs) { lhsPointer in
1010
withUnsafePointer(to: rhs) { rhsPointer in
1111
memcmp(lhsPointer, rhsPointer, MemoryLayout<OrderedSet<T>>.size) == 0 || lhs == rhs

0 commit comments

Comments
 (0)