[PATCH] D46206: [clang-tidy] Add Apple prefix acronyms to objc-property-declaration
Ben Hamilton via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue May 1 07:52:27 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL331267: [clang-tidy] Add Apple prefix acronyms to objc-property-declaration (authored by benhamilton, committed by ).
Herald added a subscriber: llvm-commits.
Repository:
rL LLVM
https://reviews.llvm.org/D46206
Files:
clang-tools-extra/trunk/clang-tidy/objc/PropertyDeclarationCheck.cpp
clang-tools-extra/trunk/test/clang-tidy/objc-property-declaration.m
Index: clang-tools-extra/trunk/clang-tidy/objc/PropertyDeclarationCheck.cpp
===================================================================
--- clang-tools-extra/trunk/clang-tidy/objc/PropertyDeclarationCheck.cpp
+++ clang-tools-extra/trunk/clang-tidy/objc/PropertyDeclarationCheck.cpp
@@ -45,11 +45,17 @@
"ARGB",
"ASCII",
"BGRA",
+ "CA",
+ "CF",
+ "CG",
+ "CI",
+ "CV",
"CMYK",
"DNS",
"FPS",
"FTP",
"GIF",
+ "GL",
"GPS",
"GUID",
"HD",
@@ -65,6 +71,7 @@
"LZW",
"MDNS",
"MIDI",
+ "NS",
"OS",
"PDF",
"PIN",
@@ -81,6 +88,7 @@
"RPC",
"RTF",
"RTL",
+ "SC",
"SDK",
"SSO",
"TCP",
Index: clang-tools-extra/trunk/test/clang-tidy/objc-property-declaration.m
===================================================================
--- clang-tools-extra/trunk/test/clang-tidy/objc-property-declaration.m
+++ clang-tools-extra/trunk/test/clang-tidy/objc-property-declaration.m
@@ -19,6 +19,8 @@
@property(strong, nonatomic) NSString *VCsPluralToAdd;
@property(assign, nonatomic) int centerX;
@property(assign, nonatomic) int enable2GBackgroundFetch;
+ at property(assign, nonatomic) int shouldUseCFPreferences;
+ at property(assign, nonatomic) int enableGLAcceleration;
@end
@interface Foo (Bar)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D46206.144720.patch
Type: text/x-patch
Size: 1323 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180501/624ef2d9/attachment.bin>
More information about the cfe-commits
mailing list