From 8cb9eedb25d831b1776a3e8f16b5e29ea963451f Mon Sep 17 00:00:00 2001 From: Justin Scofield <47263509+scawful@users.noreply.github.com> Date: Tue, 31 Dec 2024 21:00:27 -0500 Subject: [PATCH] replace constexpr std string with static const --- src/app/core/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/core/common.h b/src/app/core/common.h index 9d0da523..a09723c9 100644 --- a/src/app/core/common.h +++ b/src/app/core/common.h @@ -183,7 +183,7 @@ class NotifyValue { }; static bool log_to_console = false; -constexpr std::string kLogFileOut = "yaze_log.txt"; +static const std::string kLogFileOut = "yaze_log.txt"; template static void logf(const absl::FormatSpec &format, const Args &...args) {