fix iterator parameter

This commit is contained in:
bolero-MURAKAMI 2016-04-01 23:37:48 +09:00
parent 6e8b5ea395
commit 802f2fbaed
111 changed files with 607 additions and 633 deletions

View file

@ -24,7 +24,7 @@ namespace sprout {
template<typename InputIterator, typename Result, typename UnaryOperation>
inline SPROUT_CONSTEXPR typename sprout::fit::results::algorithm<Result>::type
transform_impl(
InputIterator first, InputIterator last, Result const& result, UnaryOperation op,
InputIterator const& first, InputIterator const& last, Result const& result, UnaryOperation op,
typename sprout::container_traits<Result>::difference_type offset
)
{