[PATCH] D68251: [clang-tidy] Fix module registry name and description for Darwin clang-tidy module.

Dmitri Gribenko via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue Oct 1 00:15:56 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL373304: [clang-tidy] Fix module registry name and description for Darwin clang-tidy… (authored by gribozavr, committed by ).
Herald added a subscriber: llvm-commits.

Changed prior to commit:
  https://reviews.llvm.org/D68251?vs=222512&id=222551#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D68251/new/

https://reviews.llvm.org/D68251

Files:
  clang-tools-extra/trunk/clang-tidy/darwin/DarwinTidyModule.cpp


Index: clang-tools-extra/trunk/clang-tidy/darwin/DarwinTidyModule.cpp
===================================================================
--- clang-tools-extra/trunk/clang-tidy/darwin/DarwinTidyModule.cpp
+++ clang-tools-extra/trunk/clang-tidy/darwin/DarwinTidyModule.cpp
@@ -27,7 +27,7 @@
 
 // Register the DarwinTidyModule using this statically initialized variable.
 static ClangTidyModuleRegistry::Add<darwin::DarwinModule>
-    X("misc-module", "Adds miscellaneous lint checks.");
+    X("darwin-module", "Adds Darwin-specific lint checks.");
 
 // This anchor is used to force the linker to link in the generated object file
 // and thus register the DarwinModule.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D68251.222551.patch
Type: text/x-patch
Size: 672 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20191001/ffe55cea/attachment.bin>


More information about the cfe-commits mailing list