Skip to content

Commit 6ac1db4

Browse files
committed
[Jenkins] auto-formatting by clang-format version 10.0.0-4ubuntu1
1 parent c82075e commit 6ac1db4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

stan/math/prim/fun/select.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,9 @@ template <typename T_bool, typename T_true, typename T_false,
149149
inline auto select(const T_bool c, const T_true y_true, const T_false y_false) {
150150
using ret_t = return_type_t<T_true, T_false>;
151151
return c
152-
.unaryExpr(
153-
[y_true, y_false](bool cond) {
154-
return cond ? ret_t(y_true) : ret_t(y_false); })
152+
.unaryExpr([y_true, y_false](bool cond) {
153+
return cond ? ret_t(y_true) : ret_t(y_false);
154+
})
155155
.eval();
156156
}
157157

0 commit comments

Comments
 (0)