Skip to content

Commit 7453d34

Browse files
committed
Add missing template parameter T to inclusive_scan's signature
1 parent fb902ec commit 7453d34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algorithms.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,7 @@ <h1>Inclusive scan</h1>
772772
OutputIterator inclusive_scan(InputIterator first, InputIterator last,
773773
OutputIterator result,
774774
BinaryOperation binary_op);</cxx-signature>
775-
<cxx-signature>template&lt;class InputIterator, class OutputIterator, class BinaryOperation&gt;
775+
<cxx-signature>template&lt;class InputIterator, class OutputIterator, class BinaryOperation, class T&gt;
776776
OutputIterator inclusive_scan(InputIterator first, InputIterator last,
777777
OutputIterator result,
778778
BinaryOperation binary_op, T init);</cxx-signature>

0 commit comments

Comments
 (0)