Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamer2368 committed Aug 5, 2024
1 parent d47c389 commit 37d53ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/linalg/Matrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Matrix::Matrix(
// Check integer multiplication overflow
if (num_rows > INT_MAX / num_cols)
CAROM_ERROR("Matrix::setSize- new size exceeds maximum integer value!\n");

d_mat = mat;
d_alloc_size = num_rows*num_cols;
d_num_cols = num_cols;
Expand Down

0 comments on commit 37d53ff

Please sign in to comment.