move Glib ustring format helper to utils

this formatter is useful for other modules
which want to print Glib exceptions messages
This commit is contained in:
Alex Maystrenko
2022-02-05 21:19:55 +01:00
parent 12caae8fd2
commit d4da04a750
2 changed files with 12 additions and 7 deletions

View File

@ -8,13 +8,7 @@
#include <fstream>
#include <map>
template <>
struct fmt::formatter<Glib::ustring> : formatter<std::string> {
template <typename FormatContext>
auto format(const Glib::ustring& value, FormatContext& ctx) {
return formatter<std::string>::format(value, ctx);
}
};
#include "util/format.hpp"
template <>
struct fmt::formatter<Glib::VariantBase> : formatter<std::string> {