fix: CI being broken on Arch Linux

This commit is contained in:
WerWolv
2023-08-16 23:07:16 +02:00
parent 8a2afd1c05
commit fc93f8bd66

View File

@@ -63,6 +63,6 @@ template<>
struct fmt::formatter<hex::LangEntry> : fmt::formatter<std::string_view> {
template<typename FormatContext>
auto format(const hex::LangEntry &entry, FormatContext &ctx) {
return fmt::formatter<std::string_view>::format(entry, ctx);
return fmt::formatter<std::string_view>::format(entry.get(), ctx);
}
};