Skip to content

Commit 058b96c

Browse files
committed
[Jenkins] auto-formatting by clang-format version 10.0.0-4ubuntu1
1 parent a937b12 commit 058b96c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

stan/math/fwd/fun/hypergeometric_1F0.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ namespace math {
2525
* @param[in] z Scalar z argument
2626
* @return Hypergeometric 1F0 function
2727
*/
28-
template <typename Ta, typename Tz,
29-
typename FvarT = return_type_t<Ta, Tz>,
28+
template <typename Ta, typename Tz, typename FvarT = return_type_t<Ta, Tz>,
3029
require_all_stan_scalar_t<Ta, Tz>* = nullptr,
3130
require_any_fvar_t<Ta, Tz>* = nullptr>
3231
FvarT hypergeometric_1f0(const Ta& a, const Tz& z) {

stan/math/prim/fun/hypergeometric_1F0.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ namespace math {
2727
* @param[in] z Scalar z argument
2828
* @return Hypergeometric 1F0 function
2929
*/
30-
template <typename Ta, typename Tz,
31-
require_all_arithmetic_t<Ta, Tz>* = nullptr>
30+
template <typename Ta, typename Tz, require_all_arithmetic_t<Ta, Tz>* = nullptr>
3231
double hypergeometric_1f0(const Ta& a, const Tz& z) {
3332
constexpr const char* function = "hypergeometric_1f0";
3433
check_less("hypergeometric_1f0", "abs(z)", std::fabs(z), 1.0);

0 commit comments

Comments
 (0)