Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Shared/CGUCodeGenTool.m
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ - (void)writeOutputFiles;
return [obj1 compare:obj2];
}];

NSMutableString *interface = [NSMutableString stringWithFormat:@"//\n// This file is generated from %@ by %@.\n// Please do not edit.\n//\n\n#import <UIKit/UIKit.h>\n\n\n", self.inputURL.lastPathComponent, self.toolName];
NSMutableString *interface = [NSMutableString stringWithFormat:@"//\n// This file is generated from %@ by %@.\n// Please do not edit.\n//\n\n@import UIKit;\n\n\n", self.inputURL.lastPathComponent, self.toolName];

if (self.skipClassDeclaration) {
[interface appendString:[self.interfaceContents componentsJoinedByString:@""]];
Expand Down