From af29a91cb020527159499b8743e461aab253d2cb Mon Sep 17 00:00:00 2001 From: Andreas Krug <153394595+Andreas-Krug@users.noreply.github.com> Date: Mon, 8 Jun 2026 07:51:45 +0200 Subject: [PATCH] [unord.set.overview,unord.multiset.overview] Fix indentation --- source/containers.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/containers.tex b/source/containers.tex index aa3de561b8..dd23365a04 100644 --- a/source/containers.tex +++ b/source/containers.tex @@ -14913,7 +14913,7 @@ template constexpr unordered_set(InputIterator f, InputIterator l, size_type n, const hasher& hf, const allocator_type& a) - : unordered_set(f, l, n, hf, key_equal(), a) { } + : unordered_set(f, l, n, hf, key_equal(), a) { } constexpr unordered_set(initializer_list il, size_type n, const allocator_type& a) : unordered_set(il, n, hasher(), key_equal(), a) { } @@ -15333,7 +15333,7 @@ template constexpr unordered_multiset(InputIterator f, InputIterator l, size_type n, const hasher& hf, const allocator_type& a) - : unordered_multiset(f, l, n, hf, key_equal(), a) { } + : unordered_multiset(f, l, n, hf, key_equal(), a) { } template<@\exposconcept{container-compatible-range}@ R> constexpr unordered_multiset(from_range_t, R&& rg, size_type n, const allocator_type& a) : unordered_multiset(from_range, std::forward(rg),