Skip to content
Snippets Groups Projects
Commit 93fb69d1 authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

Fix signed/unsigned warning

[[Imported from SVN: r10076]]
parent 496db966
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,7 @@ namespace Dune {
for (size_t j=0; j<result.M(); j++)
{
result[i][j] = 0;
for (int k=0; k<derivativeOfProjection.M(); k++)
for (size_t k=0; k<derivativeOfProjection.M(); k++)
result[i][j] += derivativeOfProjection[i][k]*derivative[k][j];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment