mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-12 14:54:10 +00:00
add SPROUT_FORWARD - workaround for ICC
This commit is contained in:
parent
7831105add
commit
274122efb2
202 changed files with 750 additions and 741 deletions
|
@ -56,7 +56,7 @@ namespace sprout {
|
|||
)
|
||||
{
|
||||
return sprout::fit::detail::random_swap_result_impl_1<Container, UniformRandomNumberGenerator>(
|
||||
sprout::fixed::random_swap_result(cont, sprout::forward<UniformRandomNumberGenerator>(g)),
|
||||
sprout::fixed::random_swap_result(cont, SPROUT_FORWARD(UniformRandomNumberGenerator, g)),
|
||||
offset
|
||||
);
|
||||
}
|
||||
|
@ -71,7 +71,7 @@ namespace sprout {
|
|||
>
|
||||
random_swap_result(Container const& cont, UniformRandomNumberGenerator&& g) {
|
||||
return sprout::fit::detail::random_swap_result_impl(
|
||||
cont, sprout::forward<UniformRandomNumberGenerator>(g),
|
||||
cont, SPROUT_FORWARD(UniformRandomNumberGenerator, g),
|
||||
sprout::internal_begin_offset(cont)
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue