fix generate, unfold

This commit is contained in:
bolero-MURAKAMI 2012-09-27 22:15:29 +09:00
parent 10e9a7679d
commit a9308ae3ee
8 changed files with 24 additions and 24 deletions

View file

@ -16,7 +16,7 @@ namespace sprout {
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Container>::type unfold_n_impl(
Container const& cont,
Size n,
Generator gen,
Generator const& gen,
typename sprout::container_traits<Container>::difference_type offset,
Inits const&... inits
)
@ -35,7 +35,7 @@ namespace sprout {
inline SPROUT_CONSTEXPR typename sprout::fit::result_of::algorithm<Container>::type unfold_n(
Container const& cont,
Size n,
Generator gen,
Generator const& gen,
Inits const&... inits
)
{