[clang-tools-extra] r353760 - [NFC][clangd] Remove unused lambda capture

Francis Visoiu Mistrih via cfe-commits cfe-commits at lists.llvm.org
Mon Feb 11 14:36:47 PST 2019


Author: thegameg
Date: Mon Feb 11 14:36:47 2019
New Revision: 353760

URL: http://llvm.org/viewvc/llvm-project?rev=353760&view=rev
Log:
[NFC][clangd] Remove unused lambda capture

Avoid this warning:

llvm/clang-tools-extra/clangd/ClangdServer.cpp:365:23: warning: lambda
capture 'this' is not used [-Wunused-lambda-capture]

  auto Action = [Sel, this](decltype(CB) CB, std::string File,
                    ~~^~~~
1 warning generated.

Modified:
    clang-tools-extra/trunk/clangd/ClangdServer.cpp

Modified: clang-tools-extra/trunk/clangd/ClangdServer.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/ClangdServer.cpp?rev=353760&r1=353759&r2=353760&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/ClangdServer.cpp (original)
+++ clang-tools-extra/trunk/clangd/ClangdServer.cpp Mon Feb 11 14:36:47 2019
@@ -362,7 +362,7 @@ void ClangdServer::enumerateTweaks(PathR
 
 void ClangdServer::applyTweak(PathRef File, Range Sel, StringRef TweakID,
                               Callback<tooling::Replacements> CB) {
-  auto Action = [Sel, this](decltype(CB) CB, std::string File,
+  auto Action = [Sel](decltype(CB) CB, std::string File,
                             std::string TweakID,
                             Expected<InputsAndAST> InpAST) {
     if (!InpAST)




More information about the cfe-commits mailing list