Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch warnings for conformances of external types #429

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ extension FloatingPoint {
}
}

extension Float : IdentifiableType {
extension Swift.Float : Differentiator.IdentifiableType {

}

extension Double : IdentifiableType {
extension Swift.Double : Differentiator.IdentifiableType {

}
22 changes: 11 additions & 11 deletions Sources/RxDataSources/IntegerType+IdentifiableType.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,44 +16,44 @@ extension BinaryInteger {
}
}

extension Int : IdentifiableType {
extension Swift.Int : Differentiator.IdentifiableType {

}

extension Int8 : IdentifiableType {
extension Swift.Int8 : Differentiator.IdentifiableType {

}

extension Int16 : IdentifiableType {
extension Swift.Int16 : Differentiator.IdentifiableType {

}

extension Int32 : IdentifiableType {
extension Swift.Int32 : Differentiator.IdentifiableType {

}

extension Int64 : IdentifiableType {
extension Swift.Int64 : Differentiator.IdentifiableType {

}


extension UInt : IdentifiableType {
extension Swift.UInt : Differentiator.IdentifiableType {

}

extension UInt8 : IdentifiableType {
extension Swift.UInt8 : Differentiator.IdentifiableType {

}

extension UInt16 : IdentifiableType {
extension Swift.UInt16 : Differentiator.IdentifiableType {

}

extension UInt32 : IdentifiableType {
extension Swift.UInt32 : Differentiator.IdentifiableType {

}

extension UInt64 : IdentifiableType {
extension Swift.UInt64 : Differentiator.IdentifiableType {

}

2 changes: 1 addition & 1 deletion Sources/RxDataSources/String+IdentifiableType.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import Foundation

extension String : IdentifiableType {
extension Swift.String : Differentiator.IdentifiableType {
public typealias Identity = String

public var identity: String {
Expand Down