Skip to content

Commit

Permalink
Fix for lint
Browse files Browse the repository at this point in the history
  • Loading branch information
yujincheng08 committed Jun 8, 2024
1 parent d842c0c commit 00bc54b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions include/fmt/chrono.h
Original file line number Diff line number Diff line change
Expand Up @@ -2150,8 +2150,7 @@ struct formatter<day, Char> : private formatter<std::tm, Char> {
if (use_tm_formatter_) return formatter<std::tm, Char>::format(time, ctx);
detail::get_locale loc(false, ctx.locale());
auto w = detail::tm_writer<decltype(ctx.out()), Char>(loc, ctx.out(), time);
w.on_day_of_month(detail::numeric_system::standard,
detail::pad_type::unspecified);
w.on_day_of_month(detail::numeric_system::standard, detail::pad_type::unspecified);
return w.out();
}
};
Expand Down

0 comments on commit 00bc54b

Please sign in to comment.