Skip to content

Commit 8500d0c

Browse files
committed
Less than is a static function..
1 parent 22d5acd commit 8500d0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/Synchronization/Atomics/WordPair.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ extension WordPair: Comparable {
190190
@available(SwiftStdlib 6.0, *)
191191
@_alwaysEmitIntoClient
192192
@_transparent
193-
public func <(lhs: WordPair, rhs: WordPair) -> Bool {
193+
public static func <(lhs: WordPair, rhs: WordPair) -> Bool {
194194
if lhs.first != rhs.first {
195195
return lhs.first < rhs.first
196196
} else {

0 commit comments

Comments
 (0)