Skip to content

Commit d4358a8

Browse files
jensmaurertkoeppe
authored andcommitted
[hive.syn] Fix typos in deduction guides
1 parent e1c18ba commit d4358a8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

source/containers.tex

+6-6
Original file line numberDiff line numberDiff line change
@@ -8126,21 +8126,21 @@
81268126
hive_limits @\exposid{current-limits}@ = @\impdef@; // \expos
81278127
};
81288128

8129-
template<class InputIterator, class Allocator = allocator<@\exposid{iter-value-type}@<InputIterator>>
8129+
template<class InputIterator, class Allocator = allocator<@\exposid{iter-value-type}@<InputIterator>>>
81308130
hive(InputIterator, InputIterator, Allocator = Allocator())
81318131
-> hive<@\exposid{iter-value-type}@<InputIterator>, Allocator>;
81328132

8133-
template<class InputIterator, class Allocator = allocator<@\exposid{iter-value-type}@<InputIterator>>
8134-
hive(InputIterator, InputIterator, hive_limits block_limits, Allocator = Allocator())
8135-
-> hive<@\exposid{iter-value-type}@<InputIterator>, block_limits, Allocator>;
8133+
template<class InputIterator, class Allocator = allocator<@\exposid{iter-value-type}@<InputIterator>>>
8134+
hive(InputIterator, InputIterator, hive_limits, Allocator = Allocator())
8135+
-> hive<@\exposid{iter-value-type}@<InputIterator>, Allocator>;
81368136

81378137
template<ranges::@\libconcept{input_range}@ R, class Allocator = allocator<ranges::range_value_t<R>>>
81388138
hive(from_range_t, R&&, Allocator = Allocator())
81398139
-> hive<ranges::range_value_t<R>, Allocator>;
81408140

81418141
template<ranges::@\libconcept{input_range}@ R, class Allocator = allocator<ranges::range_value_t<R>>>
8142-
hive(from_range_t, R&&, hive_limits block_limits, Allocator = Allocator())
8143-
-> hive<ranges::range_value_t<R>, block_limits, Allocator>;
8142+
hive(from_range_t, R&&, hive_limits, Allocator = Allocator())
8143+
-> hive<ranges::range_value_t<R>, Allocator>;
81448144
}
81458145
\end{codeblock}
81468146

0 commit comments

Comments
 (0)