Skip to content

Commit 06e6d70

Browse files
authored
Merge pull request #891 from audkar/replace-imports
Use objective-c++ compatible import statements
2 parents 63abb9f + a17db49 commit 06e6d70

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

Auth/FirebaseAuthUI/AccountManagement/FUIAccountSettingsOperation.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// limitations under the License.
1515
//
1616

17-
@import Foundation;
17+
#import <Foundation/Foundation.h>;
1818

1919
@class FIRAuth;
2020
@class FIRUser;

Auth/FirebaseAuthUI/FUIAuthErrors.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// limitations under the License.
1515
//
1616

17-
@import Foundation;
17+
#import <Foundation/Foundation.h>;
1818

1919
NS_ASSUME_NONNULL_BEGIN
2020

Auth/FirebaseAuthUI/FirebaseAuthUI.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// limitations under the License.
1515
//
1616

17-
@import UIKit;
17+
#import <UIKit/UIKit.h>;
1818

1919
//! Project version number for FirebaseAuthUI.
2020
FOUNDATION_EXPORT double FirebaseAuthUIVersionNumber;

Database/FirebaseDatabaseUI/FUICollection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
// clang-format on
2020

21-
@import Foundation;
21+
#import <Foundation/Foundation.h>;
2222

2323
@class FIRDatabaseReference, FIRDatabaseQuery, FIRDataSnapshot;
2424
@protocol FUICollectionDelegate;

Database/FirebaseDatabaseUI/FUICollectionViewDataSource.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
// clang-format on
2020

21-
@import UIKit;
21+
#import <UIKit/UIKit.h>;
2222

2323
#import "FUICollection.h"
2424

Database/FirebaseDatabaseUI/FUITableViewDataSource.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
// clang-format on
2020

21-
@import UIKit;
21+
#import <UIKit/UIKit.h>;
2222

2323
#import "FUICollection.h"
2424

Database/FirebaseDatabaseUI/FirebaseDatabaseUI.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// limitations under the License.
1515
//
1616

17-
@import UIKit;
17+
#import <UIKit/UIKit.h>;
1818

1919
//! Project version number for FirebaseDatabaseUI.
2020
FOUNDATION_EXPORT double FirebaseDatabaseUIVersionNumber;

FacebookAuth/FirebaseFacebookAuthUI/FirebaseFacebookAuthUI.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// limitations under the License.
1515
//
1616

17-
@import UIKit;
17+
#import <UIKit/UIKit.h>;
1818

1919
//! Project version number for FirebaseFacebookAuthUI.
2020
FOUNDATION_EXPORT double FirebaseFacebookAuthUIVersionNumber;

Firestore/FirebaseFirestoreUI/FUIFirestoreCollectionViewDataSource.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
// clang-format on
2020

21-
@import UIKit;
21+
#import <UIKit/UIKit.h>;
2222

2323
#import "FUIBatchedArray.h"
2424

Firestore/FirebaseFirestoreUI/FUIFirestoreTableViewDataSource.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
// clang-format on
2020

21-
@import UIKit;
21+
#import <UIKit/UIKit.h>;
2222

2323
#import "FUIBatchedArray.h"
2424

0 commit comments

Comments
 (0)