Skip to content

Commit 762b5b4

Browse files
committed
[Jenkins] auto-formatting by clang-format version 5.0.0-3~16.04.1 (tags/RELEASE_500/final)
1 parent 73cce9e commit 762b5b4

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test/unit/math/prim/functor/apply_test.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ TEST(MathFunctions, apply_two_args) {
9898
TEST(MathFunctions, apply_three_args) {
9999
std::tuple<double, double, int> x = std::make_tuple(1.5, 0.75, 1);
100100

101-
auto y = stan::math::apply([](double x0, double x1, int x2) { return x0 + x1 + x2; }, x);
101+
auto y = stan::math::apply(
102+
[](double x0, double x1, int x2) { return x0 + x1 + x2; }, x);
102103

103104
EXPECT_EQ(3.25, y);
104105
EXPECT_TRUE((std::is_same<double, decltype(y)>::value));

0 commit comments

Comments
 (0)