mirror of https://git.suyu.dev/suyu/suyu
Remove accidental use of standard format instead of libfmt format
This commit is contained in:
parent
487089ecaa
commit
d02da8726d
|
@ -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…
Reference in New Issue