From 4a5278a915647f4ec4538df8fda5e207f0585e99 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Tue, 12 Aug 2025 13:24:14 +0100 Subject: [PATCH] =?UTF-8?q?style:=20Mark=20spdlog=20fwd=20declararations?= =?UTF-8?q?=20as=20NOLINT(readability-identifie=E2=80=A6=20(#2423)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …r-naming) Fix: https://github.com/XRPLF/clio/issues/2422 --- src/util/log/Logger.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/log/Logger.hpp b/src/util/log/Logger.hpp index ee9b6b320..1871831ce 100644 --- a/src/util/log/Logger.hpp +++ b/src/util/log/Logger.hpp @@ -35,10 +35,10 @@ // to avoid including the spdlog headers in this header file. namespace spdlog { -class logger; +class logger; // NOLINT(readability-identifier-naming) namespace sinks { -class sink; +class sink; // NOLINT(readability-identifier-naming) } // namespace sinks } // namespace spdlog