Fixed cppcheck errors

This commit is contained in:
SChernykh
2023-05-23 20:11:00 +02:00
parent cd57ab6ad9
commit 3fdadf3eb5
5 changed files with 7 additions and 7 deletions

View File

@@ -290,9 +290,9 @@ private:
static FORCEINLINE void strip_colors(char* buf, uint32_t& size)
{
char* p_read = buf;
const char* p_read = buf;
char* p_write = buf;
char* buf_end = buf + size;
const char* buf_end = buf + size;
bool is_color = false;