Skip to content

Commit 4be1c23

Browse files
committed
test: #import -> #include
Replace `#import` with `#include` as `#import` is a Microsoft type library inclusion feature on Windows. This enables additional APINotes tests to pass on Windows.
1 parent 2426527 commit 4be1c23

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

test/APINotes/Inputs/custom-frameworks/APINotesFrameworkTest.framework/Headers/APINotesFrameworkTest.h

+8-8
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ __attribute__((objc_root_class))
3030

3131
#endif // __OBJC__
3232

33-
#import <APINotesFrameworkTest/Classes.h>
34-
#import <APINotesFrameworkTest/Enums.h>
35-
#import <APINotesFrameworkTest/Globals.h>
36-
#import <APINotesFrameworkTest/ImportAsMember.h>
37-
#import <APINotesFrameworkTest/Properties.h>
38-
#import <APINotesFrameworkTest/Protocols.h>
39-
#import <APINotesFrameworkTest/Types.h>
40-
#import <APINotesFrameworkTest/SwiftWrapper.h>
33+
#include <APINotesFrameworkTest/Classes.h>
34+
#include <APINotesFrameworkTest/Enums.h>
35+
#include <APINotesFrameworkTest/Globals.h>
36+
#include <APINotesFrameworkTest/ImportAsMember.h>
37+
#include <APINotesFrameworkTest/Properties.h>
38+
#include <APINotesFrameworkTest/Protocols.h>
39+
#include <APINotesFrameworkTest/Types.h>
40+
#include <APINotesFrameworkTest/SwiftWrapper.h>

test/ClangImporter/Inputs/chained-unit-test-bridging-header-to-pch.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#import "app-bridging-header-to-pch.h"
1+
#include "app-bridging-header-to-pch.h"
22

33
static inline int unit_test_function(int x) {
44
return x + 28;

0 commit comments

Comments
 (0)