Fix bug in cleanup commit

Fix a copy-paste error in rB11c4066159e
This commit is contained in:
Sybren A. Stüvel
2020-12-07 12:54:46 +01:00
parent 11c4066159
commit d329a6a937

View File

@@ -169,7 +169,7 @@ void BCMatrix::sanitize(Matrix &mat, int precision)
void BCMatrix::sanitize(DMatrix &mat, int precision)
{
for (auto &row : mat) {
for (float &cell : row) {
for (double &cell : row) {
cell = double_round(cell, precision);
}
}