Skip to content

Commit fda7e71

Browse files
authored
Merge pull request #3075 from compnerd/include
2 parents 512e412 + 1583c8c commit fda7e71

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

CoreFoundation/Locale.subproj/CFListFormatter.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
88
*/
99

10-
#import "CFListFormatter.h"
10+
#include "CFListFormatter.h"
1111

12-
#import "CFICULogging.h"
13-
#import "CFInternal.h"
14-
#import "CFRuntime_Internal.h"
15-
#import <assert.h>
12+
#include "CFICULogging.h"
13+
#include "CFInternal.h"
14+
#include "CFRuntime_Internal.h"
15+
#include <assert.h>
1616

1717
#define BUFFER_SIZE 256
1818
#define RESULT_BUFFER_SIZE 768

CoreFoundation/Locale.subproj/CFRelativeDateTimeFormatter.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
Responsibility: I-Ting Liu
99
*/
1010

11-
#import "CFRelativeDateTimeFormatter.h"
11+
#include "CFRelativeDateTimeFormatter.h"
1212

13-
#import <assert.h>
14-
#import "CFICULogging.h"
15-
#import "CFInternal.h"
16-
#import "CFRuntime_Internal.h"
13+
#include <assert.h>
14+
#include "CFICULogging.h"
15+
#include "CFInternal.h"
16+
#include "CFRuntime_Internal.h"
1717

1818
struct __CFRelativeDateTimeFormatter {
1919
CFRuntimeBase _base;

CoreFoundation/String.subproj/CFAttributedString.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include "CFRuntime_Internal.h"
1818

1919
#if (TARGET_OS_MAC || TARGET_OS_WIN32) && DEPLOYMENT_RUNTIME_OBJC
20-
#import <Foundation/NSAttributedString.h>
20+
#include <Foundation/NSAttributedString.h>
2121
@interface NSAttributedString (NSPrivate)
2222
- (NSAttributedString *)_createAttributedSubstringWithRange:(NSRange)range NS_RETURNS_RETAINED;
2323
@end

0 commit comments

Comments
 (0)