Skip to content

Commit

Permalink
Merge pull request #891 from audkar/replace-imports
Browse files Browse the repository at this point in the history
Use objective-c++ compatible import statements
  • Loading branch information
morganchen12 authored Aug 11, 2020
2 parents 63abb9f + a17db49 commit 06e6d70
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// limitations under the License.
//

@import Foundation;
#import <Foundation/Foundation.h>;

@class FIRAuth;
@class FIRUser;
Expand Down
2 changes: 1 addition & 1 deletion Auth/FirebaseAuthUI/FUIAuthErrors.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// limitations under the License.
//

@import Foundation;
#import <Foundation/Foundation.h>;

NS_ASSUME_NONNULL_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion Auth/FirebaseAuthUI/FirebaseAuthUI.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// limitations under the License.
//

@import UIKit;
#import <UIKit/UIKit.h>;

//! Project version number for FirebaseAuthUI.
FOUNDATION_EXPORT double FirebaseAuthUIVersionNumber;
Expand Down
2 changes: 1 addition & 1 deletion Database/FirebaseDatabaseUI/FUICollection.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

// clang-format on

@import Foundation;
#import <Foundation/Foundation.h>;

@class FIRDatabaseReference, FIRDatabaseQuery, FIRDataSnapshot;
@protocol FUICollectionDelegate;
Expand Down
2 changes: 1 addition & 1 deletion Database/FirebaseDatabaseUI/FUICollectionViewDataSource.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

// clang-format on

@import UIKit;
#import <UIKit/UIKit.h>;

#import "FUICollection.h"

Expand Down
2 changes: 1 addition & 1 deletion Database/FirebaseDatabaseUI/FUITableViewDataSource.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

// clang-format on

@import UIKit;
#import <UIKit/UIKit.h>;

#import "FUICollection.h"

Expand Down
2 changes: 1 addition & 1 deletion Database/FirebaseDatabaseUI/FirebaseDatabaseUI.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// limitations under the License.
//

@import UIKit;
#import <UIKit/UIKit.h>;

//! Project version number for FirebaseDatabaseUI.
FOUNDATION_EXPORT double FirebaseDatabaseUIVersionNumber;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// limitations under the License.
//

@import UIKit;
#import <UIKit/UIKit.h>;

//! Project version number for FirebaseFacebookAuthUI.
FOUNDATION_EXPORT double FirebaseFacebookAuthUIVersionNumber;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

// clang-format on

@import UIKit;
#import <UIKit/UIKit.h>;

#import "FUIBatchedArray.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

// clang-format on

@import UIKit;
#import <UIKit/UIKit.h>;

#import "FUIBatchedArray.h"

Expand Down
2 changes: 1 addition & 1 deletion Firestore/FirebaseFirestoreUI/FUISnapshotArrayDiff.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// limitations under the License.
//

@import Foundation;
#import <Foundation/Foundation.h>;

NS_ASSUME_NONNULL_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion GoogleAuth/FirebaseGoogleAuthUI/FirebaseGoogleAuthUI.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// limitations under the License.
//

@import UIKit;
#import <UIKit/UIKit.h>;

//! Project version number for FirebaseGoogleAuthUI.
FOUNDATION_EXPORT double FirebaseGoogleAuthUIVersionNumber;
Expand Down
2 changes: 1 addition & 1 deletion PhoneAuth/FirebasePhoneAuthUI/FirebasePhoneAuthUI.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// limitations under the License.
//

@import UIKit;
#import <UIKit/UIKit.h>;

//! Project version number for FirebasePhoneAuthUI.
FOUNDATION_EXPORT double FirebasePhoneAuthUIVersionNumber;
Expand Down
2 changes: 1 addition & 1 deletion Storage/FirebaseStorageUI/UIImageView+FirebaseStorage.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// limitations under the License.
//

@import UIKit;
#import <UIKit/UIKit.h>;

#import <FirebaseStorage/FirebaseStorage.h>
#import <SDWebImage/SDWebImage.h>
Expand Down

0 comments on commit 06e6d70

Please sign in to comment.