mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-13 02:08:31 +12:00
Update fmt version to 9.1.0 (#177)
This commit is contained in:
parent
f2ec0b4083
commit
0ed4fdcd78
16 changed files with 56 additions and 33 deletions
|
@ -219,7 +219,7 @@ namespace iosu
|
|||
template <typename ... TArgs>
|
||||
curl_slist* append_header_param(struct curl_slist* list, const char* format, TArgs&& ... args)
|
||||
{
|
||||
return curl_slist_append(list, fmt::format(format, std::forward<TArgs>(args)...).c_str());
|
||||
return curl_slist_append(list, fmt::format(fmt::runtime(format), std::forward<TArgs>(args)...).c_str());
|
||||
}
|
||||
|
||||
bool starts_with(const char* str, const char* pre)
|
||||
|
|
|
@ -84,7 +84,7 @@ namespace iosu
|
|||
name = tmp;
|
||||
}
|
||||
|
||||
g_friend_notifications.emplace_back(fmt::format(msg_format, name), 5000);
|
||||
g_friend_notifications.emplace_back(fmt::format(fmt::runtime(msg_format), name), 5000);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue