Update logs.cpp

This commit is contained in:
Ivan 2024-11-05 23:30:19 +03:00 committed by GitHub
parent 5f6ac1e084
commit caf5cc78c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -397,8 +397,8 @@ void logs::message::broadcast(const char* fmt, const fmt_type_info* sup, ...) co
g_tls_log_control(fmt, 0);
// Get text, extract va_args
constinit thread_local std::unique_ptr<std::string> text();
constinit thread_local std::unique_ptr<std::vector<u64>> args_();
constinit thread_local std::unique_ptr<std::string> text{};
constinit thread_local std::unique_ptr<std::vector<u64>> args_{};
if (!text_)
text_ = std::make_unique<std::string>();
if (!args_)