diff clang-tools-extra/clang-tidy/google/ExplicitConstructorCheck.cpp @ 252:1f2b6ac9f198 llvm-original

LLVM16-1
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Fri, 18 Aug 2023 09:04:13 +0900
parents 79ff65ed7e25
children
line wrap: on
line diff
--- a/clang-tools-extra/clang-tidy/google/ExplicitConstructorCheck.cpp	Wed Nov 09 17:47:54 2022 +0900
+++ b/clang-tools-extra/clang-tidy/google/ExplicitConstructorCheck.cpp	Fri Aug 18 09:04:13 2023 +0900
@@ -14,9 +14,7 @@
 
 using namespace clang::ast_matchers;
 
-namespace clang {
-namespace tidy {
-namespace google {
+namespace clang::tidy::google {
 
 void ExplicitConstructorCheck::registerMatchers(MatchFinder *Finder) {
   Finder->addMatcher(
@@ -146,6 +144,4 @@
       << FixItHint::CreateInsertion(Loc, "explicit ");
 }
 
-} // namespace google
-} // namespace tidy
-} // namespace clang
+} // namespace clang::tidy::google