Fix line length

This commit is contained in:
Martin Lambertsen
2024-10-21 06:32:18 +02:00
parent bb1ba3a132
commit 324b7dfc32
@@ -96,8 +96,8 @@ std::string GetPrintableParam(
const arma::mat& matrix = std::get<1>(tuple);
std::ostringstream oss;
oss << matrix.n_rows << "x" << matrix.n_cols << " matrix with dimension type "
<< "information";
oss << matrix.n_rows << "x" << matrix.n_cols
<< " matrix with dimension type information";
return oss.str();
}