Skip to content

Commit 942ca76

Browse files
committed
[Jenkins] auto-formatting by clang-format version 10.0.0-4ubuntu1
1 parent 7fa767d commit 942ca76

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

stan/math/prim/err/check_matching_dims.hpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,10 @@ inline void check_matching_dims(const char* function, const char* name1,
8686
std::ostringstream y1_err;
8787
std::ostringstream msg_str;
8888
y1_err << "(" << y1.rows() << ", " << y1.cols() << ") and ";
89-
msg_str << " (" << y2.rows() << ", " << y2.cols() << ") must match in size";
90-
invalid_argument(function, name1, name2, std::string(y1_err.str()).c_str(),
89+
msg_str << " (" << y2.rows() << ", " << y2.cols()
90+
<< ") must match in size";
91+
invalid_argument(function, name1, name2,
92+
std::string(y1_err.str()).c_str(),
9193
std::string(msg_str.str()).c_str());
9294
}();
9395
}

0 commit comments

Comments
 (0)