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

Reintroduce the method VariableBlockVector::iterator::index

I had removed it by accident in one of the previous commits.
parent 40448688
No related branches found
No related tags found
No related merge requests found
......@@ -592,6 +592,12 @@ namespace Dune {
return p[i+offset];
}
/** \brief Return the index of the entry this iterator is pointing to */
size_type index() const
{
return i;
}
private:
window_type* p;
size_type i;
......
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