aboutsummaryrefslogtreecommitdiff
path: root/clang-tools-extra/clang-tidy/performance/InefficientAlgorithmCheck.cpp
diff options
context:
space:
mode:
authorAlexander Kornienko <alexfh@google.com>2020-12-11 00:52:35 +0100
committerAlexander Kornienko <alexfh@google.com>2020-12-11 00:58:46 +0100
commit027899dab6ac31a34e17b0f43eeb3d00e310a361 (patch)
tree791dde39680708b5bb74d7c2ba10fa567236ae8f /clang-tools-extra/clang-tidy/performance/InefficientAlgorithmCheck.cpp
parent76c36c11a9c620a5eeced5750b844a1097ab7586 (diff)
downloadllvm-027899dab6ac31a34e17b0f43eeb3d00e310a361.zip
llvm-027899dab6ac31a34e17b0f43eeb3d00e310a361.tar.gz
llvm-027899dab6ac31a34e17b0f43eeb3d00e310a361.tar.bz2
Remove references to the ast_type_traits namespace
Follow up to cd62511496938e33c061c90796dd23a5288ff843 / https://reviews.llvm.org/D74499 Reviewed By: aaron.ballman Differential Revision: https://reviews.llvm.org/D92994
Diffstat (limited to 'clang-tools-extra/clang-tidy/performance/InefficientAlgorithmCheck.cpp')
-rw-r--r--clang-tools-extra/clang-tidy/performance/InefficientAlgorithmCheck.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/clang-tidy/performance/InefficientAlgorithmCheck.cpp b/clang-tools-extra/clang-tidy/performance/InefficientAlgorithmCheck.cpp
index dfea010..8381ed0 100644
--- a/clang-tools-extra/clang-tidy/performance/InefficientAlgorithmCheck.cpp
+++ b/clang-tools-extra/clang-tidy/performance/InefficientAlgorithmCheck.cpp
@@ -36,7 +36,7 @@ void InefficientAlgorithmCheck::registerMatchers(MatchFinder *Finder) {
"::std::unordered_multiset", "::std::unordered_multimap"));
const auto Matcher = traverse(
- ast_type_traits::TK_AsIs,
+ TK_AsIs,
callExpr(
callee(functionDecl(Algorithms)),
hasArgument(