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

Avoid signed/unsigned warning

parent ea5b7689
No related branches found
No related tags found
No related merge requests found
......@@ -68,7 +68,7 @@ public:
localFiniteElement.localBasis().evaluateFunction(quadPos, shapeFunctionValues);
Dune::FieldVector<field_type,dim> value(0);
for (int i=0; i<localFiniteElement.size(); i++)
for (size_t i=0; i<localFiniteElement.size(); i++)
for (int j=0; j<dim; j++)
value[j] += shapeFunctionValues[i] * localConfiguration[i][j];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment