1
1
mirror of https://github.com/github/semantic.git synced 2024-11-25 21:43:07 +03:00

Section mark for Category equality.

This commit is contained in:
Rob Rix 2015-10-09 08:31:04 -04:00
parent 4117b3c710
commit 9e51c130c4

View File

@ -36,6 +36,9 @@ public enum Category: AlgebraicHashable, Comparable, CustomDebugStringConvertibl
}
}
// MARK: - Equatable
public func == (left: Category, right: Category) -> Bool {
return left.tag == right.tag
}