You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
template< class InputIterator, class OutputIterator, class BinaryOperation>
OutputIterator inclusive_scan(InputIterator first, InputIterator last,
OutputIterator result,
BinaryOperation binary_op, T init);
This is missing a template parameter T (i.e., should presumably be template< class InputIterator, class OutputIterator, class BinaryOperation, class T>). The synopsis looks correct.
The text was updated successfully, but these errors were encountered:
[parallel.alg.inclusive.scan]/3 depicts
This is missing a template parameter
T
(i.e., should presumably betemplate< class InputIterator, class OutputIterator, class BinaryOperation, class T>
). The synopsis looks correct.The text was updated successfully, but these errors were encountered: