diff options
author | Ben Hamilton <benhamilton@google.com> | 2018-06-27 19:13:09 +0000 |
---|---|---|
committer | Ben Hamilton <benhamilton@google.com> | 2018-06-27 19:13:09 +0000 |
commit | 7ea884c58f326bf5d783e78b87f486901e8d8f39 (patch) | |
tree | 6c7d9d9db212afc1b22f48515c2e3f00e24111aa /clang-tools-extra/clang-tidy/objc/PropertyDeclarationCheck.cpp | |
parent | b0d57a535b878a0ce8f348e25bf0c070a1d796c7 (diff) | |
download | bcm5719-llvm-7ea884c58f326bf5d783e78b87f486901e8d8f39.tar.gz bcm5719-llvm-7ea884c58f326bf5d783e78b87f486901e8d8f39.zip |
[clang-tidy/ObjC] Add hashing algorithm acronyms to objc-property-declaration
Summary:
This PR adds a few acronyms related to hashing algorithms to the standard
list in `objc-property-declaration`.
Reviewers: Wizard
Reviewed By: Wizard
Subscribers: cfe-commits
Differential Revision: https://reviews.llvm.org/D48652
llvm-svn: 335770
Diffstat (limited to 'clang-tools-extra/clang-tidy/objc/PropertyDeclarationCheck.cpp')
-rw-r--r-- | clang-tools-extra/clang-tidy/objc/PropertyDeclarationCheck.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang-tools-extra/clang-tidy/objc/PropertyDeclarationCheck.cpp b/clang-tools-extra/clang-tidy/objc/PropertyDeclarationCheck.cpp index dc15bdbe43f..366d71f4a4e 100644 --- a/clang-tools-extra/clang-tidy/objc/PropertyDeclarationCheck.cpp +++ b/clang-tools-extra/clang-tidy/objc/PropertyDeclarationCheck.cpp @@ -51,6 +51,7 @@ constexpr llvm::StringLiteral DefaultSpecialAcronyms[] = { "CF", "CG", "CI", + "CRC", "CV", "CMYK", "DNS", @@ -62,6 +63,7 @@ constexpr llvm::StringLiteral DefaultSpecialAcronyms[] = { "GUID", "HD", "HDR", + "HMAC", "HTML", "HTTP", "HTTPS", @@ -71,6 +73,8 @@ constexpr llvm::StringLiteral DefaultSpecialAcronyms[] = { "JS", "LAN", "LZW", + "MAC", + "MD", "MDNS", "MIDI", "NS", @@ -86,12 +90,14 @@ constexpr llvm::StringLiteral DefaultSpecialAcronyms[] = { "RGB", "RGBA", "RGBX", + "RIPEMD", "ROM", "RPC", "RTF", "RTL", "SC", "SDK", + "SHA", "SSO", "TCP", "TIFF", |