Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing template parameter in inclusive_scan description #49

Closed
timsong-cpp opened this issue Mar 21, 2016 · 1 comment
Closed

Missing template parameter in inclusive_scan description #49

timsong-cpp opened this issue Mar 21, 2016 · 1 comment

Comments

@timsong-cpp
Copy link

[parallel.alg.inclusive.scan]/3 depicts

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.

@jaredhoberock
Copy link
Contributor

Thanks for catching this, it's fixed in the source.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants