From ecb4353e90bbb10425e927f2c3649f1e648b5e34 Mon Sep 17 00:00:00 2001 From: Andreas Krug <153394595+Andreas-Krug@users.noreply.github.com> Date: Tue, 16 Sep 2025 13:32:50 +0200 Subject: [PATCH] [multimap.overview,set.overview,multiset.overview] Fix typos of constructors --- source/containers.tex | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/containers.tex b/source/containers.tex index 42fbe2a83b..f8daaf0a47 100644 --- a/source/containers.tex +++ b/source/containers.tex @@ -12317,7 +12317,7 @@ constexpr multimap(InputIterator first, InputIterator last, const Allocator& a) : multimap(first, last, Compare(), a) { } template<@\exposconcept{container-compatible-range}@ R> - constexpr multimap(from_range_t, R&& rg, const Allocator& a)) + constexpr multimap(from_range_t, R&& rg, const Allocator& a) : multimap(from_range, std::forward(rg), Compare(), a) { } constexpr multimap(initializer_list il, const Allocator& a) : multimap(il, Compare(), a) { } @@ -12724,7 +12724,7 @@ constexpr set(InputIterator first, InputIterator last, const Allocator& a) : set(first, last, Compare(), a) { } template<@\exposconcept{container-compatible-range}@ R> - constexpr set(from_range_t, R&& rg, const Allocator& a)) + constexpr set(from_range_t, R&& rg, const Allocator& a) : set(from_range, std::forward(rg), Compare(), a) { } constexpr set(initializer_list il, const Allocator& a) : set(il, Compare(), a) { } @@ -13089,7 +13089,7 @@ constexpr multiset(InputIterator first, InputIterator last, const Allocator& a) : multiset(first, last, Compare(), a) { } template<@\exposconcept{container-compatible-range}@ R> - constexpr multiset(from_range_t, R&& rg, const Allocator& a)) + constexpr multiset(from_range_t, R&& rg, const Allocator& a) : multiset(from_range, std::forward(rg), Compare(), a) { } constexpr multiset(initializer_list il, const Allocator& a) : multiset(il, Compare(), a) { }