Skip to content

Commit bad33e5

Browse files
author
Derek Lee
authored
Fixes xcode12 bolts compile error (#1548)
* #1545 Updates Bolts import from module @import to global #import - Fixes compilation error for Bolts in Xcode 12 * #1545 Update #import to conform to existing style
1 parent 931684b commit bad33e5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Parse/Parse/Internal/PFGeoPointPrivate.h

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

1010
#import <Foundation/Foundation.h>
1111

12-
# import <Parse/PFGeoPoint.h>
12+
#import <Parse/PFGeoPoint.h>
1313

1414
extern const double EARTH_RADIUS_MILES;
1515
extern const double EARTH_RADIUS_KILOMETERS;

Parse/Parse/Internal/PFLogging.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#ifndef Parse_PFLogging_h
1111
#define Parse_PFLogging_h
1212

13-
# import <Parse/PFConstants.h>
13+
#import <Parse/PFConstants.h>
1414

1515
#import "PFSystemLogger.h"
1616

Parse/Parse/Internal/PFSystemLogger.h

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

1010
#import <Foundation/Foundation.h>
1111

12-
# import <Parse/PFConstants.h>
12+
#import <Parse/PFConstants.h>
1313

1414
typedef uint8_t PFLoggingTag;
1515

Parse/Parse/Internal/ParseModule.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010
#import <Foundation/Foundation.h>
11-
@import Bolts;
11+
#import <Bolts/Bolts.h>
1212

1313
NS_ASSUME_NONNULL_BEGIN
1414

0 commit comments

Comments
 (0)