[PATCH] D57384: [clangd] Make -clang-tidy-checks a non-hidden command-line arg

Phabricator via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue Jan 29 07:51:59 PST 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL352509: [clangd] Make -clang-tidy-checks a non-hidden command-line arg (authored by ibiryukov, committed by ).
Herald added a subscriber: llvm-commits.

Changed prior to commit:
  https://reviews.llvm.org/D57384?vs=184082&id=184092#toc

Repository:
  rL LLVM

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

https://reviews.llvm.org/D57384

Files:
  clang-tools-extra/trunk/clangd/tool/ClangdMain.cpp


Index: clang-tools-extra/trunk/clangd/tool/ClangdMain.cpp
===================================================================
--- clang-tools-extra/trunk/clangd/tool/ClangdMain.cpp
+++ clang-tools-extra/trunk/clangd/tool/ClangdMain.cpp
@@ -203,9 +203,9 @@
 
 static llvm::cl::opt<std::string> ClangTidyChecks(
     "clang-tidy-checks",
-    llvm::cl::desc("List of clang-tidy checks to run (this will overrides "
+    llvm::cl::desc("List of clang-tidy checks to run (this will override "
                    ".clang-tidy files)"),
-    llvm::cl::init(""), llvm::cl::Hidden);
+    llvm::cl::init(""));
 
 static llvm::cl::opt<bool> SuggestMissingIncludes(
     "suggest-missing-includes",


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D57384.184092.patch
Type: text/x-patch
Size: 689 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20190129/1994280c/attachment.bin>


More information about the cfe-commits mailing list