Skip to content
Snippets Groups Projects
Commit 9f68eee0 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[ML] Use getElements() to access mesh's iterators.

parent 56140c9c
No related branches found
No related tags found
No related merge requests found
......@@ -83,12 +83,12 @@ public:
std::vector<Element*>::const_iterator elementsBegin() const
{
return _msh.elementsBegin();
return _msh.getElements().cbegin();
}
std::vector<Element*>::const_iterator elementsEnd() const
{
return _msh.elementsEnd();
return _msh.getElements().cend();
}
private:
......
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