mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Now that we've moved to C++14, we no longer need the llvm::make_unique implementation from STLExtras.h. This patch is a mechanical replacement of (hopefully) all the llvm::make_unique instances in the swift repo.
9 lines
233 B
Objective-C
9 lines
233 B
Objective-C
@import ObjectiveC;
|
|
|
|
@interface NonNilTest: NSObject
|
|
- (NonNilTest *)nonNilObject;
|
|
+ (NonNilTest *)nonNilObject;
|
|
@property NonNilTest *nonNilObjectProperty;
|
|
@property (unsafe_unretained) NonNilTest *unownedNonNilObjectProperty;
|
|
@end
|