ranges: Fix extra semi

This commit is contained in:
Björn Schäpers 2023-04-06 11:35:01 +02:00
parent 4e3f381058
commit c44c0fae1d

View File

@ -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