Skip to content
Snippets Groups Projects

Build fix: Xcode required at least one Self - and using Self for both worked and seems clearer

Merged Reid Ellis requested to merge rae/vlc-ios:rae/4.0.0a3-build-fix into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -149,7 +149,7 @@ extension MLBaseModel {
}
extension VLCMLObject {
static func == (lhs: VLCMLObject, rhs: VLCMLObject) -> Bool {
static func == (lhs: Self, rhs: Self) -> Bool {
return lhs.identifier() == rhs.identifier()
}
}
Loading