From cfcb1e562fa9517544e1b2b02e73311390721f73 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Tue, 14 May 2024 13:58:55 +0000 Subject: [PATCH] .clang-tidy: remove modernize-concat-nested-namespaces MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- .clang-tidy | 1 - 1 file changed, 1 deletion(-) 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, -- 2.34.1