From: Jérémie Galarneau Date: Tue, 14 May 2024 13:58:55 +0000 (+0000) Subject: .clang-tidy: remove modernize-concat-nested-namespaces X-Git-Url: http://git.lttng.org./?a=commitdiff_plain;ds=sidebyside;h=cfcb1e562fa9517544e1b2b02e73311390721f73;hp=849019151cf07f376a4a68ce1669e357f4775657;p=lttng-tools.git .clang-tidy: remove modernize-concat-nested-namespaces The concatenated namespace syntax (e.g. namespace my::ns::woah{}) was introduced in C++17 while this project is built as C++11. Leaving this rule it in the .clang-tidy only adds noise (and salt to the wound). Change-Id: Ib9550aa602fbcccc7500b14603dfd698fd7b69de Signed-off-by: Jérémie Galarneau --- diff --git a/.clang-tidy b/.clang-tidy index 5b6f3705b..d2a18789e 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -70,7 +70,6 @@ Checks: '-*, misc-unused-using-decls, misc-use-anonymous-namespace, modernize-avoid-bind, - modernize-concat-nested-namespaces, modernize-loop-convert, modernize-make-shared, modernize-make-unique,