From bd30a68e7dc7a0458da456a1030c9c92e0a0af44 Mon Sep 17 00:00:00 2001 From: SChernykh Date: Mon, 7 Aug 2023 07:28:44 +0200 Subject: [PATCH] Fixed cppcheck error --- src/log.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/log.h b/src/log.h index 1f8092c..db7c96a 100644 --- a/src/log.h +++ b/src/log.h @@ -162,6 +162,7 @@ template<> struct Stream::Entry template<> struct Stream::Entry { + // cppcheck-suppress constParameterPointer static FORCEINLINE void put(char* data, Stream* wrapper) { wrapper->writeBuf(data, strlen(data)); } };