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) { }