Skip to content

Commit

Permalink
Suppress a gcc warning
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaut committed Feb 12, 2022
1 parent a44716f commit 8e2e4d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fmt/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -2282,7 +2282,7 @@ FMT_CONSTEXPR auto parse_align(const Char* begin, const Char* end,
FMT_ASSERT(begin != end, "");
auto align = align::none;
auto p = begin + code_point_length(begin);
if (p >= end) p = begin;
if (end - p <= 0) p = begin;
for (;;) {
switch (to_ascii(*p)) {
case '<':
Expand Down

0 comments on commit 8e2e4d4

Please sign in to comment.