aboutsummaryrefslogtreecommitdiff
path: root/clang/unittests/AST/SourceLocationTest.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/unittests/AST/SourceLocationTest.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/unittests/AST/SourceLocationTest.cpp')
-rw-r--r--clang/unittests/AST/SourceLocationTest.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/unittests/AST/SourceLocationTest.cpp b/clang/unittests/AST/SourceLocationTest.cpp
index 32dc382..c1565c8 100644
--- a/clang/unittests/AST/SourceLocationTest.cpp
+++ b/clang/unittests/AST/SourceLocationTest.cpp
@@ -683,8 +683,7 @@ TEST(ObjCMessageExpr, ParenExprRange) {
"+ (void) f1: (A)arg;\n"
"@end\n"
"void f2() { A a; [B f1: (a)]; }\n",
- traverse(ast_type_traits::TK_AsIs, parenExpr()),
- Lang_OBJCXX));
+ traverse(TK_AsIs, parenExpr()), Lang_OBJCXX));
}
TEST(FunctionDecl, FunctionDeclWithThrowSpecification) {