Skip to content

Commit be3cc0b

Browse files
committed
swift 5 comformance
1 parent 101e567 commit be3cc0b

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

BuildTimeAnalyzer/ProjectSelection.swift

100644100755
File mode changed.

BuildTimeAnalyzer/RawMeasure.swift

100644100755
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ func ==(lhs: RawMeasure, rhs: RawMeasure) -> Bool {
2828
// MARK: Hashable
2929

3030
extension RawMeasure: Hashable {
31+
3132
func hash(into hasher: inout Hasher) {
32-
hasher.combine(time.hashValue ^ text.hashValue)
33+
hasher.combine(time)
34+
hasher.combine(text)
3335
}
3436
}

BuildTimeAnalyzer/ViewController.swift

100644100755
File mode changed.

0 commit comments

Comments
 (0)