commit | 456177b98fa3d807007ccfe671aae02691480e5a | [log] [tgz] |
---|---|---|
author | Etienne Bergeron <etienneb@google.com> | Mon May 02 18:00:29 2016 +0000 |
committer | Etienne Bergeron <etienneb@google.com> | Mon May 02 18:00:29 2016 +0000 |
tree | 77b9ffe58104e1158adf04cab301d3f4721e3fae | |
parent | 93529ed9b8a9de9e63e23d50c8304b2fbb4335fe [diff] [blame] |
[clang-tidy] Cleaning namespaces to be more consistant across checkers. Summary: The goal of the patch is to bring checkers in their appropriate namespace. This path doesn't change any behavior. Reviewers: alexfh Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D19811 llvm-svn: 268264
diff --git a/clang-tools-extra/clang-tidy/cppcoreguidelines/ProBoundsConstantArrayIndexCheck.cpp b/clang-tools-extra/clang-tidy/cppcoreguidelines/ProBoundsConstantArrayIndexCheck.cpp index a8dc1d8..30792e7 100644 --- a/clang-tools-extra/clang-tidy/cppcoreguidelines/ProBoundsConstantArrayIndexCheck.cpp +++ b/clang-tools-extra/clang-tidy/cppcoreguidelines/ProBoundsConstantArrayIndexCheck.cpp
@@ -17,6 +17,7 @@ namespace clang { namespace tidy { +namespace cppcoreguidelines { ProBoundsConstantArrayIndexCheck::ProBoundsConstantArrayIndexCheck( StringRef Name, ClangTidyContext *Context) @@ -128,5 +129,6 @@ } } +} // namespace cppcoreguidelines } // namespace tidy } // namespace clang