mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-24 05:55:43 -04:00

This patch removes the comments grouping header includes. They were added after running IWYU over the LLDB codebase. However they add little value, are often outdates and burdensome to maintain. llvm-svn: 346626
12 lines
131 B
Objective-C
12 lines
131 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#import "Bar.h"
|
|
|
|
@interface Foo : NSObject {
|
|
Bar *_bar;
|
|
}
|
|
|
|
- (NSString *)description;
|
|
|
|
@end
|