mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
fix algorithm implementation
This commit is contained in:
parent
23408e46c4
commit
fb9770ce34
23 changed files with 46 additions and 41 deletions
|
@ -59,7 +59,7 @@ namespace sprout {
|
|||
typename sprout::fixed::results::algorithm<Result>::type
|
||||
>::type
|
||||
transform_inclusive_scan_impl(
|
||||
InputIterator, InputIterator, Result const& result, BinaryOperation, UnaryOperation,
|
||||
InputIterator const&, InputIterator const&, Result const& result, BinaryOperation, UnaryOperation,
|
||||
typename sprout::container_traits<Result>::size_type
|
||||
)
|
||||
{
|
||||
|
@ -102,7 +102,7 @@ namespace sprout {
|
|||
typename sprout::fixed::results::algorithm<Result>::type
|
||||
>::type
|
||||
transform_inclusive_scan_impl(
|
||||
InputIterator, InputIterator, Result const& result, BinaryOperation, T,
|
||||
InputIterator const&, InputIterator const&, Result const& result, BinaryOperation, T,
|
||||
typename sprout::container_traits<Result>::size_type
|
||||
)
|
||||
{
|
||||
|
@ -114,7 +114,7 @@ namespace sprout {
|
|||
typename sprout::fixed::results::algorithm<Result>::type
|
||||
>::type
|
||||
transform_inclusive_scan_impl(
|
||||
InputIterator, InputIterator, Result const& result, BinaryOperation, T init,
|
||||
InputIterator const&, InputIterator const&, Result const& result, BinaryOperation, T init,
|
||||
typename sprout::container_traits<Result>::size_type
|
||||
)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue