mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
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.
This commit is contained in:
@@ -30,11 +30,11 @@ __attribute__((objc_root_class))
|
||||
|
||||
#endif // __OBJC__
|
||||
|
||||
#import <APINotesFrameworkTest/Classes.h>
|
||||
#import <APINotesFrameworkTest/Enums.h>
|
||||
#import <APINotesFrameworkTest/Globals.h>
|
||||
#import <APINotesFrameworkTest/ImportAsMember.h>
|
||||
#import <APINotesFrameworkTest/Properties.h>
|
||||
#import <APINotesFrameworkTest/Protocols.h>
|
||||
#import <APINotesFrameworkTest/Types.h>
|
||||
#import <APINotesFrameworkTest/SwiftWrapper.h>
|
||||
#include <APINotesFrameworkTest/Classes.h>
|
||||
#include <APINotesFrameworkTest/Enums.h>
|
||||
#include <APINotesFrameworkTest/Globals.h>
|
||||
#include <APINotesFrameworkTest/ImportAsMember.h>
|
||||
#include <APINotesFrameworkTest/Properties.h>
|
||||
#include <APINotesFrameworkTest/Protocols.h>
|
||||
#include <APINotesFrameworkTest/Types.h>
|
||||
#include <APINotesFrameworkTest/SwiftWrapper.h>
|
||||
|
||||
Reference in New Issue
Block a user