[libc++] Remove "pass by const value" in <random>. NFCI.
NOKEYCHECK=True
GitOrigin-RevId: 25666a74c5af05ae6b189ad4f7382d351fb8698f
diff --git a/include/random b/include/random
index 3ef246b..85d03ee 100644
--- a/include/random
+++ b/include/random
@@ -4125,7 +4125,7 @@
}
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)