From 278739362145b45fc3aa2d20f5025790030d754e Mon Sep 17 00:00:00 2001 From: Krunoslav Zaher Date: Mon, 4 Jul 2016 04:06:01 +0200 Subject: [PATCH] Fixes for Xcode 7.3.1 --- .../DataSources/FloatingPointType+IdentifiableType.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/RxExample/RxDataSources/DataSources/FloatingPointType+IdentifiableType.swift b/RxExample/RxDataSources/DataSources/FloatingPointType+IdentifiableType.swift index 905ff796..59cc95fc 100644 --- a/RxExample/RxDataSources/DataSources/FloatingPointType+IdentifiableType.swift +++ b/RxExample/RxDataSources/DataSources/FloatingPointType+IdentifiableType.swift @@ -24,6 +24,7 @@ extension Double : IdentifiableType { } +#if swift(>=2.3) extension Float80 : IdentifiableType { typealias identity = Float80 @@ -31,3 +32,4 @@ extension Float80 : IdentifiableType { return self } } +#endif \ No newline at end of file