From 456177b98fa3d807007ccfe671aae02691480e5a Mon Sep 17 00:00:00 2001 From: Etienne Bergeron Date: Mon, 2 May 2016 18:00:29 +0000 Subject: [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 --- clang-tools-extra/clang-tidy/misc/MacroParenthesesCheck.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'clang-tools-extra/clang-tidy/misc/MacroParenthesesCheck.cpp') diff --git a/clang-tools-extra/clang-tidy/misc/MacroParenthesesCheck.cpp b/clang-tools-extra/clang-tidy/misc/MacroParenthesesCheck.cpp index 86e5d27fe6c..4b3e1ca688e 100644 --- a/clang-tools-extra/clang-tidy/misc/MacroParenthesesCheck.cpp +++ b/clang-tools-extra/clang-tidy/misc/MacroParenthesesCheck.cpp @@ -14,6 +14,7 @@ namespace clang { namespace tidy { +namespace misc { namespace { class MacroParenthesesPPCallbacks : public PPCallbacks { @@ -198,5 +199,6 @@ void MacroParenthesesCheck::registerPPCallbacks(CompilerInstance &Compiler) { &Compiler.getPreprocessor(), this)); } +} // namespace misc } // namespace tidy } // namespace clang -- cgit v1.2.3