Skip to content
Snippets Groups Projects
Commit 8e2d1fcb authored by Oliver Sander's avatar Oliver Sander
Browse files

Fix signed/unsigned warning

parent 0f4b78a9
Branches
Tags
1 merge request!239Fix signed/unsigned warning
Pipeline #14451 passed
......@@ -108,7 +108,7 @@ namespace Dune {
/** \brief Inverts the matrix */
void invert() {
for (int i=0; i<this->N(); i++)
for (size_type i=0; i<this->N(); i++)
(*this)[i][i].invert();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment