diff options
author | Alexander Kornienko <alexfh@google.com> | 2015-03-02 12:39:18 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2015-03-02 12:39:18 +0000 |
commit | 0a6ce9f4e1429b001b6fb5feabc60d23cc0e5ef8 (patch) | |
tree | 88cef75f59cc1d10ab1cf9c88d1783b48d1cfd79 /clang-tools-extra/unittests/clang-tidy/LLVMModuleTest.cpp | |
parent | 6992d5dcc56838ed5af0b53e6ee89948ef5c33c0 (diff) | |
download | bcm5719-llvm-0a6ce9f4e1429b001b6fb5feabc60d23cc0e5ef8.tar.gz bcm5719-llvm-0a6ce9f4e1429b001b6fb5feabc60d23cc0e5ef8.zip |
[clang-tidy] Refactor: Move llvm clang-tidy checks to namespace clang::tidy::llvm
clang-tidy checks are organized into modules. This refactoring moves the llvm
module checks to clang::tidy::llvm
http://reviews.llvm.org/D7995
Patch by Richard Thomson!
llvm-svn: 230952
Diffstat (limited to 'clang-tools-extra/unittests/clang-tidy/LLVMModuleTest.cpp')
-rw-r--r-- | clang-tools-extra/unittests/clang-tidy/LLVMModuleTest.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang-tools-extra/unittests/clang-tidy/LLVMModuleTest.cpp b/clang-tools-extra/unittests/clang-tidy/LLVMModuleTest.cpp index 92f9cc3f8ca..1d7fb24098a 100644 --- a/clang-tools-extra/unittests/clang-tidy/LLVMModuleTest.cpp +++ b/clang-tools-extra/unittests/clang-tidy/LLVMModuleTest.cpp @@ -3,6 +3,8 @@ #include "llvm/IncludeOrderCheck.h" #include "gtest/gtest.h" +using namespace clang::tidy::llvm; + namespace clang { namespace tidy { namespace test { |