[clang-tools-extra] r335770 - [clang-tidy/ObjC] Add hashing algorithm acronyms to objc-property-declaration

Ben Hamilton via cfe-commits cfe-commits at lists.llvm.org
Wed Jun 27 12:13:10 PDT 2018


Author: benhamilton
Date: Wed Jun 27 12:13:09 2018
New Revision: 335770

URL: http://llvm.org/viewvc/llvm-project?rev=335770&view=rev
Log:
[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

Modified:
    clang-tools-extra/trunk/clang-tidy/objc/PropertyDeclarationCheck.cpp

Modified: clang-tools-extra/trunk/clang-tidy/objc/PropertyDeclarationCheck.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-tidy/objc/PropertyDeclarationCheck.cpp?rev=335770&r1=335769&r2=335770&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-tidy/objc/PropertyDeclarationCheck.cpp (original)
+++ clang-tools-extra/trunk/clang-tidy/objc/PropertyDeclarationCheck.cpp Wed Jun 27 12:13:09 2018
@@ -51,6 +51,7 @@ constexpr llvm::StringLiteral DefaultSpe
     "CF",
     "CG",
     "CI",
+    "CRC",
     "CV",
     "CMYK",
     "DNS",
@@ -62,6 +63,7 @@ constexpr llvm::StringLiteral DefaultSpe
     "GUID",
     "HD",
     "HDR",
+    "HMAC",
     "HTML",
     "HTTP",
     "HTTPS",
@@ -71,6 +73,8 @@ constexpr llvm::StringLiteral DefaultSpe
     "JS",
     "LAN",
     "LZW",
+    "MAC",
+    "MD",
     "MDNS",
     "MIDI",
     "NS",
@@ -86,12 +90,14 @@ constexpr llvm::StringLiteral DefaultSpe
     "RGB",
     "RGBA",
     "RGBX",
+    "RIPEMD",
     "ROM",
     "RPC",
     "RTF",
     "RTL",
     "SC",
     "SDK",
+    "SHA",
     "SSO",
     "TCP",
     "TIFF",




More information about the cfe-commits mailing list