Skip to content

Commit 49cc23a

Browse files
Andreas-Krugtkoeppe
authored andcommitted
[flat.set.defn] Fix indentation
1 parent 7abca25 commit 49cc23a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/containers.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19055,7 +19055,7 @@
1905519055

1905619056
template<class InputIterator>
1905719057
constexpr flat_set(sorted_unique_t, InputIterator first, InputIterator last,
19058-
const key_compare& comp = key_compare())
19058+
const key_compare& comp = key_compare())
1905919059
: @\exposid{c}@(first, last), @\exposid{compare}@(comp) { }
1906019060

1906119061
template<@\exposconcept{container-compatible-range}@<value_type> R>
@@ -19067,11 +19067,11 @@
1906719067
{ insert_range(std::forward<R>(rg)); }
1906819068

1906919069
constexpr flat_set(initializer_list<value_type> il, const key_compare& comp = key_compare())
19070-
: flat_set(il.begin(), il.end(), comp) { }
19070+
: flat_set(il.begin(), il.end(), comp) { }
1907119071

1907219072
constexpr flat_set(sorted_unique_t, initializer_list<value_type> il,
19073-
const key_compare& comp = key_compare())
19074-
: flat_set(sorted_unique, il.begin(), il.end(), comp) { }
19073+
const key_compare& comp = key_compare())
19074+
: flat_set(sorted_unique, il.begin(), il.end(), comp) { }
1907519075

1907619076
// \ref{flat.set.cons.alloc}, constructors with allocators
1907719077

0 commit comments

Comments
 (0)