diff --git a/include/fmt/ranges.h b/include/fmt/ranges.h index 3dfb9500..dd8f082d 100644 --- a/include/fmt/ranges.h +++ b/include/fmt/ranges.h @@ -663,7 +663,7 @@ template class is_container_adaptor_like { template 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