diff options
author | Alexander Kornienko <alexfh@google.com> | 2015-03-02 12:25:03 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2015-03-02 12:25:03 +0000 |
commit | 2b312420aadfc3f0e0ff24bd95574ab9f81b7f24 (patch) | |
tree | 1a2b1f0672c44294f931b1a149e3354b4ae725f5 /clang-tools-extra/clang-tidy/misc/InefficientAlgorithmCheck.h | |
parent | 39ccabe500fb7af76143bf5b55a01f0767044fdc (diff) | |
download | bcm5719-llvm-2b312420aadfc3f0e0ff24bd95574ab9f81b7f24.tar.gz bcm5719-llvm-2b312420aadfc3f0e0ff24bd95574ab9f81b7f24.zip |
[clang-tidy] Refactor: Move misc clang-tidy checks to namespace clang::tidy::misc
clang-tidy checks are organized into modules. This refactoring moves the misc
module checks into the namespace clang::tidy::misc
http://reviews.llvm.org/D7996
Patch by Richard Thomson!
llvm-svn: 230950
Diffstat (limited to 'clang-tools-extra/clang-tidy/misc/InefficientAlgorithmCheck.h')
-rw-r--r-- | clang-tools-extra/clang-tidy/misc/InefficientAlgorithmCheck.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang-tools-extra/clang-tidy/misc/InefficientAlgorithmCheck.h b/clang-tools-extra/clang-tidy/misc/InefficientAlgorithmCheck.h index f55297f0378..014881359d7 100644 --- a/clang-tools-extra/clang-tidy/misc/InefficientAlgorithmCheck.h +++ b/clang-tools-extra/clang-tidy/misc/InefficientAlgorithmCheck.h @@ -14,6 +14,7 @@ namespace clang { namespace tidy { +namespace misc { /// \brief Warns on inefficient use of STL algorithms on associative containers. /// @@ -28,6 +29,7 @@ public: void check(const ast_matchers::MatchFinder::MatchResult &Result) override; }; +} // namespace misc } // namespace tidy } // namespace clang |