Skip to content
Snippets Groups Projects
Commit 6f1bb458 authored by Christian Engwer's avatar Christian Engwer
Browse files

initialize int before use

[[Imported from SVN: r1809]]
parent de5a807c
Branches
Tags
No related merge requests found
......@@ -280,7 +280,7 @@ namespace Dune {
IndexVector indices = backend.vertexIndices();
int base = kuhnIndex * BackendRefinement::nElements(level);
for(int i; i <= dimension; ++i)
for(int i=0; i <= dimension; ++i)
indices += base;
return indices;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment