mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Use fmt::format_string
This commit is contained in:
@ -107,7 +107,7 @@ public:
|
||||
|
||||
// Writes format strings using fmtlib format strings.
|
||||
template <typename... Args>
|
||||
void Write(std::string_view format, Args&&... args)
|
||||
void Write(fmt::format_string<Args...> format, Args&&... args)
|
||||
{
|
||||
fmt::format_to(std::back_inserter(m_buffer), format, std::forward<Args>(args)...);
|
||||
}
|
||||
|
Reference in New Issue
Block a user