I m getting error when setting up equatable in swift
extension PFObject : Equatable {}
public func ==(lhs:PFObject,rhs:PFObject) -> Bool {
return lhs.objectId == rhs.objectId
}
Below the following error I m getting
Redundant conformance of 'PFObject' to protocol 'Equatable'
Is there any solution for this error?