Skip to content
Snippets Groups Projects
Commit 25666a74 authored by Arthur O'Dwyer's avatar Arthur O'Dwyer
Browse files

[libc++] Remove "pass by const value" in <random>. NFCI.

parent e95cd94f
No related branches found
No related tags found
No related merge requests found
......@@ -4125,7 +4125,7 @@ inline _LIBCPP_INLINE_VISIBILITY double __libcpp_lgamma(double __d) {
}
template<class _IntType>
binomial_distribution<_IntType>::param_type::param_type(const result_type __t, const double __p)
binomial_distribution<_IntType>::param_type::param_type(result_type __t, double __p)
: __t_(__t), __p_(__p)
{
if (0 < __p_ && __p_ < 1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment