[PATCH] D92994: Remove references to the ast_type_traits namespace

Aaron Ballman via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Dec 10 05:13:18 PST 2020


aaron.ballman accepted this revision.
aaron.ballman added a comment.
This revision is now accepted and ready to land.

LGTM



================
Comment at: clang-tools-extra/clang-tidy/abseil/RedundantStrcatCallsCheck.cpp:95
     for (const auto *Arg : CallExpr->arguments()) {
-      if (StartArg-- > 0) 
-      	continue;
-      if (const clang::CallExpr* Sub =
+      if (StartArg-- > 0)
+        continue;
----------------
It looks like some unrelated clang-format changes that should probably be separated out from this patch.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D92994



More information about the cfe-commits mailing list