mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-24 22:08:57 -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
13 lines
163 B
Objective-C
13 lines
163 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@class InternalClass;
|
|
|
|
@interface Bar : NSObject {
|
|
@private
|
|
InternalClass *storage;
|
|
}
|
|
|
|
- (NSString *)description;
|
|
|
|
@end
|