From: Douglas Gregor Date: Tue, 7 Jul 2015 06:20:41 +0000 (+0000) Subject: s/__nonnull/_Nonnull in a test for Objective-C __kindof. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a36fb7427b0edcdb9d925810b2e3b97ecccdf92f;p=clang s/__nonnull/_Nonnull in a test for Objective-C __kindof. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@241563 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/SemaObjC/kindof.m b/test/SemaObjC/kindof.m index 7f795c5148..b19e423720 100644 --- a/test/SemaObjC/kindof.m +++ b/test/SemaObjC/kindof.m @@ -296,7 +296,7 @@ void implicit_convert_array(NSArray<__kindof NSString *> *kindofStringsArray, void testNullability() { // The base type being a pointer type tickles the bug. - extern __kindof id __nonnull getSomeCopyable(); + extern __kindof id _Nonnull getSomeCopyable(); NSString *string = getSomeCopyable(); // no-warning void processCopyable(__typeof(getSomeCopyable()) string);