diff options
Diffstat (limited to 'clang-tools-extra/unittests/clang-tidy/MiscModuleTest.cpp')
-rw-r--r-- | clang-tools-extra/unittests/clang-tidy/MiscModuleTest.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/clang-tools-extra/unittests/clang-tidy/MiscModuleTest.cpp b/clang-tools-extra/unittests/clang-tidy/MiscModuleTest.cpp index 97390c267dd..f8419ab4eb4 100644 --- a/clang-tools-extra/unittests/clang-tidy/MiscModuleTest.cpp +++ b/clang-tools-extra/unittests/clang-tidy/MiscModuleTest.cpp @@ -1,10 +1,13 @@ #include "ClangTidyTest.h" #include "misc/ArgumentCommentCheck.h" -#include "misc/BracesAroundStatementsCheck.h" +#include "readability/BracesAroundStatementsCheck.h" #include "gtest/gtest.h" namespace clang { namespace tidy { + +using readability::BracesAroundStatementsCheck; + namespace test { #define EXPECT_NO_CHANGES(Check, Code) \ |