Skip to content

Commit

Permalink
ranges: Fix extra semi (#3374)
Browse files Browse the repository at this point in the history
  • Loading branch information
HazardyKnusperkeks authored Apr 6, 2023
1 parent 4e3f381 commit 7f46cb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fmt/ranges.h
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ template <typename T> class is_container_adaptor_like {
template <typename Container> struct all {
const Container& c;
auto begin() const -> typename Container::const_iterator { return c.begin(); }
auto end() const -> typename Container::const_iterator { return c.end(); };
auto end() const -> typename Container::const_iterator { return c.end(); }
};
} // namespace detail

Expand Down

0 comments on commit 7f46cb7

Please sign in to comment.