From 8ba394a3f92375168cea9b21e42e778334b12590 Mon Sep 17 00:00:00 2001 From: Patrick Roberts Date: Wed, 6 May 2026 17:57:24 -0500 Subject: [PATCH] Used member initializer list in move constructor --- include/beman/any_view/any_view.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/beman/any_view/any_view.hpp b/include/beman/any_view/any_view.hpp index bc91b47..bdb6f53 100644 --- a/include/beman/any_view/any_view.hpp +++ b/include/beman/any_view/any_view.hpp @@ -60,7 +60,7 @@ class any_view : public std::ranges::view_interface using adaptor_for = detail::view_adaptor; - static constexpr polymorphic_type make_default() { + static constexpr polymorphic_type make_default() noexcept { return polymorphic_type( std::in_place_type>>); } @@ -154,7 +154,7 @@ class any_view : public std::ranges::view_interface