Fixed cppcheck error

This commit is contained in:
SChernykh
2023-08-07 07:28:44 +02:00
parent f4a18726b5
commit bd30a68e7d

View File

@@ -162,6 +162,7 @@ template<> struct Stream::Entry<const char*>
template<> struct Stream::Entry<char*>
{
// cppcheck-suppress constParameterPointer
static FORCEINLINE void put(char* data, Stream* wrapper) { wrapper->writeBuf(data, strlen(data)); }
};