Skip to content
Snippets Groups Projects
Commit e4522fc1 authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[remoteindices.hh]

Fixed function call in test code, because indexSet_ is a pointer. Clang complained.

[[Imported from SVN: r7068]]
parent ab1f43c9
No related branches found
No related tags found
No related merge requests found
......@@ -1599,7 +1599,7 @@ namespace Dune {
while(index->global()<*giter) {
++index;
#ifdef DUNE_ISTL_WITH_CHECKING
if(index == indexSet_.end())
if(index == indexSet_->end())
DUNE_THROW(InvalidPosition, "No such global index in set!");
#endif
}
......
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