replace constexpr std string with static const

This commit is contained in:
Justin Scofield
2024-12-31 21:00:27 -05:00
parent bdc5e756cf
commit 8cb9eedb25

View File

@@ -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 <typename... Args>
static void logf(const absl::FormatSpec<Args...> &format, const Args &...args) {