mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 02:08:49 +12:00
Compilation fix 2
This commit is contained in:
parent
b90540c1eb
commit
e40347dd53
2 changed files with 3 additions and 3 deletions
|
@ -135,8 +135,8 @@ inline void log_message(Log::LogType type, Log::LogSeverity sev, const char* tex
|
|||
Log::LogManager::getInstance().log(msg);
|
||||
}
|
||||
|
||||
template<typename T, size_t N, typename ...Ts>
|
||||
inline void log_message(Log::LogType type, Log::LogSeverity sev, const char(&text)[N], T arg, Ts... args)
|
||||
template<typename T, typename... Ts>
|
||||
inline void log_message(Log::LogType type, Log::LogSeverity sev, const char* text, T arg, Ts... args)
|
||||
{
|
||||
Log::LogMessage msg{type, sev, fmt::format(text, arg, args...)};
|
||||
Log::LogManager::getInstance().log(msg);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue