2
0
mirror of https://github.com/boostorg/math.git synced 2026-02-13 00:22:23 +00:00

Fix more F cases.

This commit is contained in:
jzmaddock
2018-10-23 19:50:29 +01:00
parent 62ef341156
commit 841233f034
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@
result_type term;
};
// partial specialization for 1f0
// partial specialization for 1F0
template <class T>
struct hypergeometric_pFq_cf_term<T, 1u, 0u>
{

View File

@@ -54,7 +54,7 @@ inline typename tools::promote_args<T1, T2>::type hypergeometric_1F0(T1 a, T2 z,
policies::discrete_quantile<>,
policies::assert_undefined<> >::type forwarding_policy;
return policies::checked_narrowing_cast<result_type, Policy>(
detail::hypergeometric_1f0_imp<value_type>(
detail::hypergeometric_1F0_imp<value_type>(
static_cast<value_type>(a),
static_cast<value_type>(z),
forwarding_policy()),