From 4fcdbfd94892b8ba37c601895317918a311dee33 Mon Sep 17 00:00:00 2001 From: Andreas Krug <153394595+Andreas-Krug@users.noreply.github.com> Date: Tue, 2 Jun 2026 08:03:57 +0200 Subject: [PATCH] [flat.map.defn] Fix indentation --- source/containers.tex | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/containers.tex b/source/containers.tex index 8b04368332..e846903faf 100644 --- a/source/containers.tex +++ b/source/containers.tex @@ -17276,11 +17276,11 @@ : flat_map(comp) { insert_range(std::forward(rg)); } constexpr flat_map(initializer_list il, const key_compare& comp = key_compare()) - : flat_map(il.begin(), il.end(), comp) { } + : flat_map(il.begin(), il.end(), comp) { } constexpr flat_map(sorted_unique_t, initializer_list il, const key_compare& comp = key_compare()) - : flat_map(sorted_unique, il.begin(), il.end(), comp) { } + : flat_map(sorted_unique, il.begin(), il.end(), comp) { } // \ref{flat.map.cons.alloc}, constructors with allocators @@ -17546,10 +17546,10 @@ template> flat_map(sorted_unique_t, initializer_list>, Compare = Compare()) - -> flat_map; + -> flat_map; template + class Allocator> struct uses_allocator, Allocator> : bool_constant && uses_allocator_v> { };