mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2025-04-20 18:45:44 +00:00
Remove accidental use of standard format instead of libfmt format
This commit is contained in:
parent
487089ecaa
commit
d02da8726d
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ public:
|
|||
const std::string original = *string;
|
||||
string->clear();
|
||||
for (const auto c : original) {
|
||||
string->append(std::format("{:x}", unsigned(c)));
|
||||
string->append(fmt::format("{:x}", unsigned(c)));
|
||||
}
|
||||
string->pop_back();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue