Skip to content

Commit

Permalink
line breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
rok-cesnovar committed Mar 1, 2022
1 parent ab6cff9 commit ca95b16
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion stan/math/prim/fun/to_matrix.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ inline EigMat to_matrix(EigMat&& x) {
*/
template <typename EigVec, require_eigen_vector_t<EigVec>* = nullptr>
inline auto to_matrix(EigVec&& matrix) {
return Eigen::Matrix<value_type_t<EigVec>, Eigen::Dynamic, Eigen::Dynamic>(std::forward<EigVec>(matrix));
return Eigen::Matrix<
value_type_t<EigVec>,
Eigen::Dynamic, Eigen::Dynamic>(std::forward<EigVec>(matrix));
}

/**
Expand Down

0 comments on commit ca95b16

Please sign in to comment.