Skip to content

Commit 8e21791

Browse files
masters3daciidgh
authored andcommitted
add generic params to DictionaryLiteral<Key,Value>
1 parent ed1fc24 commit 8e21791

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Basic/DictionaryLiteralExtensions.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ extension DictionaryLiteral where Key: CustomStringConvertible, Value: CustomStr
2626

2727
// MARK: Equatable
2828
extension DictionaryLiteral where Key: Equatable, Value: Equatable {
29-
public static func ==(lhs: DictionaryLiteral, rhs: DictionaryLiteral) -> Bool {
29+
public static func ==(lhs: DictionaryLiteral<Key,Value>, rhs: DictionaryLiteral<Key,Value>) -> Bool {
3030
if lhs.count != rhs.count {
3131
return false
3232
}

0 commit comments

Comments
 (0)