From 56e09abb11762db6071c88bf9bf657eb8d96a96a Mon Sep 17 00:00:00 2001 From: Krunoslav Zaher Date: Mon, 4 Jul 2016 07:02:49 +0200 Subject: [PATCH] Fixes problem with Swift 2.3 --- .../DataSources/FloatingPointType+IdentifiableType.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RxExample/RxDataSources/DataSources/FloatingPointType+IdentifiableType.swift b/RxExample/RxDataSources/DataSources/FloatingPointType+IdentifiableType.swift index 59cc95fc..82de803e 100644 --- a/RxExample/RxDataSources/DataSources/FloatingPointType+IdentifiableType.swift +++ b/RxExample/RxDataSources/DataSources/FloatingPointType+IdentifiableType.swift @@ -24,7 +24,7 @@ extension Double : IdentifiableType { } -#if swift(>=2.3) +#if swift(>=3.0) extension Float80 : IdentifiableType { typealias identity = Float80 @@ -32,4 +32,4 @@ extension Float80 : IdentifiableType { return self } } -#endif \ No newline at end of file +#endif