Skip to content

Commit 7f655b7

Browse files
committed
[Jenkins] auto-formatting by clang-format version 10.0.0-4ubuntu1
1 parent 87d8cd9 commit 7f655b7

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

stan/math/prim/fun/bessel_second_kind.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ inline T2 bessel_second_kind(int v, const T2 z) {
5353
* @return Bessel second kind function applied to the two inputs.
5454
*/
5555
template <typename T1, typename T2, require_any_container_t<T1, T2>* = nullptr,
56-
require_not_var_matrix_t<T2>* = nullptr>
56+
require_not_var_matrix_t<T2>* = nullptr>
5757
inline auto bessel_second_kind(T1&& a, T2&& b) {
5858
return apply_scalar_binary(
5959
[](auto&& c, auto&& d) {

stan/math/rev/fun/bessel_second_kind.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ namespace stan {
99
namespace math {
1010

1111
template <typename T1, typename T2, require_integral_t<T1>* = nullptr,
12-
require_var_t<T2>* = nullptr,
13-
require_stan_scalar_t<T2>* = nullptr>
12+
require_var_t<T2>* = nullptr, require_stan_scalar_t<T2>* = nullptr>
1413
inline var bessel_second_kind(T1&& v, T2&& a) {
1514
double ret_val = bessel_second_kind(v, a.val());
1615
auto precomp_bessel

test/unit/math/mix/fun/bessel_second_kind_test.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ TEST(mathMixScalFun, besselSecondKind_vec) {
3838
Eigen::MatrixXd mat_in2 = in2.replicate(1, 2);
3939
stan::test::expect_ad_vectorized_binary(f, std_std_in1, mat_in2);
4040
stan::test::expect_ad_matvar(f, std_std_in1, mat_in2);
41-
4241
}
4342

4443
TEST(mathMixScalFun, besselSecondKind_matvec) {

0 commit comments

Comments
 (0)