Skip to content

Commit

Permalink
Merge pull request #79 from fimbul/remove_unused_paramter_name
Browse files Browse the repository at this point in the history
delete unused parameter name.
  • Loading branch information
bolero-MURAKAMI committed Jun 22, 2015
2 parents feac3f5 + d8958d3 commit 79ed131
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sprout/random/poisson_distribution.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ namespace sprout {
return sprout::throw_recursive_function_template_instantiation_exeeded();
}
template<typename Engine, int D, typename Random, SPROUT_RECURSIVE_FUNCTION_TEMPLATE_CONTINUE(D)>
SPROUT_CONSTEXPR sprout::random::random_result<Engine, poisson_distribution> generate_1_3(Random const& rnd, RealType v, RealType u) const {
SPROUT_CONSTEXPR sprout::random::random_result<Engine, poisson_distribution> generate_1_3(Random const& rnd, RealType, RealType u) const {
return generate_2<Engine, D + 1>(rnd, sprout::random::result(rnd), ((u < 0) ? -0.5 : 0.5) - u, generate_us(((u < 0) ? -0.5 : 0.5) - u));
}
template<typename Engine, int D, typename Random, SPROUT_RECURSIVE_FUNCTION_TEMPLATE_BREAK(D)>
Expand Down

0 comments on commit 79ed131

Please sign in to comment.