Remove accidental use of standard format instead of libfmt format

This commit is contained in:
darktux 2024-04-05 01:58:30 +02:00
parent 487089ecaa
commit d02da8726d

View file

@ -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();
}