fix warnings

This commit is contained in:
John Estropia
2023-06-07 14:17:10 +09:00
parent 4b4ae61635
commit 7988d98b92
5 changed files with 10 additions and 9 deletions

View File

@@ -503,8 +503,8 @@ public struct Select<O: DynamicObject, T: SelectResultType>: SelectClause, Hasha
// MARK: Equatable
public static func == <T, U>(lhs: Select<O, T>, rhs: Select<O, U>) -> Bool {
public static func == <T1, T2>(lhs: Select<O, T1>, rhs: Select<O, T2>) -> Bool {
return lhs.selectTerms == rhs.selectTerms
}