diff options
author | Fahad Nayyar <f_nayyar@apple.com> | 2022-11-22 13:26:21 +0000 |
---|---|---|
committer | Egor Zhdan <e_zhdan@apple.com> | 2022-11-22 13:26:40 +0000 |
commit | cdfb65e5e7182a02005b3611aa28288890b9e296 (patch) | |
tree | 8057b1c3789c83bfca991d97403a54ecd63f417e /clang/test/SemaObjC | |
parent | 470aea5ed403d43b68e2ffdbec451d79913eb15d (diff) | |
download | llvm-cdfb65e5e7182a02005b3611aa28288890b9e296.zip llvm-cdfb65e5e7182a02005b3611aa28288890b9e296.tar.gz llvm-cdfb65e5e7182a02005b3611aa28288890b9e296.tar.bz2 |
[Clang][Sema] Added space after ',' in a warning
This change fixes a typo in a warning message.
rdar://79707705
Diffstat (limited to 'clang/test/SemaObjC')
-rw-r--r-- | clang/test/SemaObjC/atomic-property-synthesis-rules.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaObjC/atomic-property-synthesis-rules.m b/clang/test/SemaObjC/atomic-property-synthesis-rules.m index c7fac7b..c7f023e 100644 --- a/clang/test/SemaObjC/atomic-property-synthesis-rules.m +++ b/clang/test/SemaObjC/atomic-property-synthesis-rules.m @@ -108,7 +108,7 @@ // read-write - might warn @property int GetSet; @property int Get; // expected-note {{property declared here}} \ - // expected-note {{setter and getter must both be synthesized}} + // expected-note {{setter and getter must both be synthesized, or both be user defined, or the property must be nonatomic}} @property int Set; // expected-note {{property declared here}} \ // expected-note {{setter and getter must both be synthesized}} @property int None; |