ranges: Fix extra semi (#3374)

This commit is contained in:
Björn Schäpers 2023-04-06 17:31:07 +02:00 committed by GitHub
parent 4e3f381058
commit 7f46cb75b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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