mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +00:00
fix iterator implementation
This commit is contained in:
parent
4c996bd47b
commit
7c706381d4
65 changed files with 494 additions and 313 deletions
|
@ -90,7 +90,7 @@ namespace sprout {
|
|||
transform(
|
||||
InputIterator first, InputIterator last,
|
||||
Result const& result, UnaryOperation op,
|
||||
void*
|
||||
std::input_iterator_tag*
|
||||
)
|
||||
{
|
||||
return sprout::fixed::detail::transform_impl(first, last, result, op, sprout::size(result));
|
||||
|
@ -207,7 +207,7 @@ namespace sprout {
|
|||
transform(
|
||||
InputIterator1 first1, InputIterator1 last1, InputIterator2 first2,
|
||||
Result const& result, BinaryOperation op,
|
||||
void*
|
||||
std::input_iterator_tag*
|
||||
)
|
||||
{
|
||||
return sprout::fixed::detail::transform_impl(first1, last1, first2, result, op, sprout::size(result));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue