From 37f8657345b1261ae8447a14dbb94ec68d2b7864 Mon Sep 17 00:00:00 2001 From: Andreas Krug <153394595+Andreas-Krug@users.noreply.github.com> Date: Sat, 25 Oct 2025 08:47:25 +0200 Subject: [PATCH] [unord.map.overview] Fix indentation --- source/containers.tex | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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&);