From c540e9f2910be723862fde43515267c36b0516e0 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Mon, 26 Feb 2024 09:58:55 +0000 Subject: [PATCH] I do not want to analyze if this was a linter bug. --- p2p/source/error.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/p2p/source/error.hpp b/p2p/source/error.hpp index 23cb548b9..0d385c0a7 100644 --- a/p2p/source/error.hpp +++ b/p2p/source/error.hpp @@ -47,6 +47,7 @@ class Error final : template Error operator <<(const Type_ &value) && { + // NOLINTNEXTLINE(misc-const-correctness) std::ostringstream data; data << value; what_ += data.str();