Skip to content

Commit 33f0825

Browse files
committed
[Jenkins] auto-formatting by clang-format version 10.0.0-4ubuntu1
1 parent d1feb19 commit 33f0825

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

stan/math/rev/fun/to_soa_sparse_matrix.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ inline auto to_soa_sparse_matrix(int m, int n, MatrixVar&& w, Vec1&& u,
8181
for (int k = 0; k < arena_x.outerSize(); ++k) {
8282
var_sparse_iterator_t it_arena_x(arena_x, k);
8383
dbl_sparse_iterator_t it_var_x(var_x.adj(), k);
84-
for (; static_cast<bool>(it_arena_x) && static_cast<bool>(it_var_x); ++it_arena_x, ++it_var_x) {
84+
for (; static_cast<bool>(it_arena_x) && static_cast<bool>(it_var_x);
85+
++it_arena_x, ++it_var_x) {
8586
it_arena_x.valueRef().adj() += it_var_x.valueRef();
8687
}
8788
}

0 commit comments

Comments
 (0)