From 03fd933c483ba89645e7e43b90a0d44c75dc733d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gef=C3=BCllte=20Taubenbrust?= <72752000+GefullteTaubenbrust2@users.noreply.github.com> Date: Sat, 28 Dec 2024 10:49:16 +0100 Subject: [PATCH] Update log.h --- src/log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/log.h b/src/log.h index 1073d7935..0e34b2c83 100644 --- a/src/log.h +++ b/src/log.h @@ -62,7 +62,7 @@ private: // These calls explicitly use the templated version of operator<<, // so that they won't use the overloads created by ADD_NULL_CHECK. if (arg == nullptr) - return this->operator<< ((const char*)"(null)"); + return this->operator<< ("(null)"); else return this->operator<< (std::forward(arg)); }