From b81b38760696c9d3fd84896829456dab124f754d Mon Sep 17 00:00:00 2001 From: tobtoht Date: Thu, 27 Mar 2025 10:48:51 +0100 Subject: [PATCH] easylogging: replace NULL with empty string literal --- external/easylogging++/easylogging++.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/easylogging++/easylogging++.h b/external/easylogging++/easylogging++.h index 313ecacde9..2dbfa676b7 100644 --- a/external/easylogging++/easylogging++.h +++ b/external/easylogging++/easylogging++.h @@ -1093,7 +1093,7 @@ class File : base::StaticClass { static std::string extractPathFromFilename(const std::string& fullPath, const char* seperator = base::consts::kFilePathSeperator); /// @brief builds stripped filename and puts it in buff - static void buildStrippedFilename(const char* filename, char buff[], const std::string &commonPrefix = NULL, + static void buildStrippedFilename(const char* filename, char buff[], const std::string &commonPrefix = "", std::size_t limit = base::consts::kSourceFilenameMaxLength); /// @brief builds base filename and puts it in buff static void buildBaseFilename(const std::string& fullPath, char buff[],