Update clock.cpp
This commit is contained in:
parent
667d0a45f4
commit
65dd245362
|
@ -233,9 +233,8 @@ struct fmt::formatter<waybar_time> : fmt::formatter<std::tm> {
|
||||||
template <typename FormatContext>
|
template <typename FormatContext>
|
||||||
auto format(const waybar_time& t, FormatContext& ctx) {
|
auto format(const waybar_time& t, FormatContext& ctx) {
|
||||||
#if FMT_VERSION >= 80000
|
#if FMT_VERSION >= 80000
|
||||||
//auto& tm_format = specs;
|
auto& tm_format = specs;
|
||||||
#endif
|
#endif
|
||||||
// return format_to(ctx.out(), "{}", date::format(t.locale, fmt::to_string(tm_format), t.ztime));
|
return format_to(ctx.out(), "{}", date::format(t.locale, fmt::to_string(tm_format), t.ztime));
|
||||||
return fmt::formatter<std::tm>::format((const std::tm&) t, ctx);
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue