diff options
Diffstat (limited to 'clang/unittests/Tooling/RecursiveASTVisitorTest.cpp')
-rw-r--r-- | clang/unittests/Tooling/RecursiveASTVisitorTest.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/clang/unittests/Tooling/RecursiveASTVisitorTest.cpp b/clang/unittests/Tooling/RecursiveASTVisitorTest.cpp index a5f85ffa923..837a15fa887 100644 --- a/clang/unittests/Tooling/RecursiveASTVisitorTest.cpp +++ b/clang/unittests/Tooling/RecursiveASTVisitorTest.cpp @@ -10,7 +10,9 @@ #include "TestVisitor.h" #include <stack> -namespace clang { +using namespace clang; + +namespace { class TypeLocVisitor : public ExpectedLocationVisitor<TypeLocVisitor> { public: @@ -614,5 +616,4 @@ TEST(RecursiveASTVisitor, AttributesAreVisited) { "};\n")); } - -} // end namespace clang +} // end anonymous namespace |