From f9663df3bf693c930db09919c9ea1eb1a096bc75 Mon Sep 17 00:00:00 2001 From: Krunoslav Zaher Date: Sun, 13 Mar 2016 18:01:39 +0100 Subject: [PATCH] Fixes compilation of example app. --- .../DataSources/CollectionViewSectionedDataSource.swift | 3 +++ .../DataSources/TableViewSectionedDataSource.swift | 3 +++ 2 files changed, 6 insertions(+) diff --git a/RxExample/RxDataSources/DataSources/CollectionViewSectionedDataSource.swift b/RxExample/RxDataSources/DataSources/CollectionViewSectionedDataSource.swift index 8ad6ebae..6e65c031 100644 --- a/RxExample/RxDataSources/DataSources/CollectionViewSectionedDataSource.swift +++ b/RxExample/RxDataSources/DataSources/CollectionViewSectionedDataSource.swift @@ -8,6 +8,9 @@ import Foundation import UIKit +#if !RX_NO_MODULE + import RxCocoa +#endif public class _CollectionViewSectionedDataSource : NSObject diff --git a/RxExample/RxDataSources/DataSources/TableViewSectionedDataSource.swift b/RxExample/RxDataSources/DataSources/TableViewSectionedDataSource.swift index 024c7f40..d50c4fc7 100644 --- a/RxExample/RxDataSources/DataSources/TableViewSectionedDataSource.swift +++ b/RxExample/RxDataSources/DataSources/TableViewSectionedDataSource.swift @@ -8,6 +8,9 @@ import Foundation import UIKit +#if !RX_NO_MODULE + import RxCocoa +#endif // objc monkey business public class _TableViewSectionedDataSource