diff --git a/source/containers.tex b/source/containers.tex index 502b47a1fe..8041fe6e05 100644 --- a/source/containers.tex +++ b/source/containers.tex @@ -13489,8 +13489,8 @@ template<@\exposconcept{container-compatible-range}@ R> constexpr unordered_map(from_range_t, R&& rg, size_type n = @\seebelow@, - const hasher& hf = hasher(), const key_equal& eql = key_equal(), - const allocator_type& a = allocator_type()); + const hasher& hf = hasher(), const key_equal& eql = key_equal(), + const allocator_type& a = allocator_type()); constexpr unordered_map(const unordered_map&); constexpr unordered_map(unordered_map&&); constexpr explicit unordered_map(const Allocator&); @@ -13510,7 +13510,7 @@ : unordered_map(f, l, n, hasher(), key_equal(), a) { } template constexpr unordered_map(InputIterator f, InputIterator l, size_type n, const hasher& hf, - const allocator_type& a) + const allocator_type& a) : unordered_map(f, l, n, hf, key_equal(), a) { } template<@\exposconcept{container-compatible-range}@ R> constexpr unordered_map(from_range_t, R&& rg, size_type n, const allocator_type& a) @@ -13523,7 +13523,7 @@ const allocator_type& a) : unordered_map(il, n, hasher(), key_equal(), a) { } constexpr unordered_map(initializer_list il, size_type n, const hasher& hf, - const allocator_type& a) + const allocator_type& a) : unordered_map(il, n, hf, key_equal(), a) { } constexpr ~unordered_map(); constexpr unordered_map& operator=(const unordered_map&);