Fix -Wunused-lambda-capture warnings.
authorEric Christopher <echristo@gmail.com>
Thu, 26 Dec 2019 23:27:21 +0000 (15:27 -0800)
committerEric Christopher <echristo@gmail.com>
Thu, 26 Dec 2019 23:27:21 +0000 (15:27 -0800)
clang-tools-extra/clang-query/QueryParser.cpp
clang/lib/ASTMatchers/Dynamic/Parser.cpp

index db4b9a4..a980722 100644 (file)
@@ -26,7 +26,7 @@ namespace query {
 // is found before End, return StringRef().  Begin is adjusted to exclude the
 // lexed region.
 StringRef QueryParser::lexWord() {
-  Line = Line.drop_while([this](char c) {
+  Line = Line.drop_while([](char c) {
     // Don't trim newlines.
     return StringRef(" \t\v\f\r").contains(c);
   });
index 1781f2a..77c9629 100644 (file)
@@ -297,7 +297,7 @@ private:
 
   /// Consume all leading whitespace from \c Code.
   void consumeWhitespace() {
-    Code = Code.drop_while([this](char c) {
+    Code = Code.drop_while([](char c) {
       // Don't trim newlines.
       return StringRef(" \t\v\f\r").contains(c);
     });