Remove accidental use of standard format instead of libfmt format

This commit is contained in:
darktux
2024-04-05 01:58:30 +02:00
committed by Briar
parent 8b57de2436
commit a1d4963fb8
+1 -1
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();
}