mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-27 20:56:25 +00:00
Use fmt::format_string
This commit is contained in:
parent
ff8965c40b
commit
0cc211d1ef
2 changed files with 3 additions and 3 deletions
|
@ -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)...);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue