mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
Use constinit in logs.cpp
Not sure if it will compile yet.
This commit is contained in:
parent
bcf581dc82
commit
de0a16ab65
1 changed files with 2 additions and 2 deletions
|
@ -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::string text;
|
||||
/*constinit thread_local*/ std::basic_string<u64> args;
|
||||
constinit thread_local std::string text;
|
||||
constinit thread_local std::vector<u64> args;
|
||||
|
||||
static constexpr fmt_type_info empty_sup{};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue