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

Remove obsolete type 'ElementIterator'

parent adbb5968
No related branches found
No related tags found
No related merge requests found
......@@ -30,13 +30,10 @@ assembleGradient(const std::vector<RigidBodyMotion<double,3> >& sol,
auto localIndexSet = this->basis_.localIndexSet();
#endif
ElementIterator it = this->basis_.gridView().template begin<0>();
ElementIterator endIt = this->basis_.gridView().template end<0>();
// Loop over all elements
for (; it!=endIt; ++it) {
localView.bind(*it);
for (const auto& element : Dune::elements(this->basis_.gridView()))
{
localView.bind(element);
#if DUNE_VERSION_LT(DUNE_FUNCTIONS,2,7)
localIndexSet.bind(localView);
#endif
......
......@@ -28,8 +28,6 @@ class RodAssembler<Basis,3> : public GeodesicFEAssembler<Basis, RigidBodyMotion<
{
typedef typename Basis::GridView GridView;
typedef typename GridView::template Codim<0>::Iterator ElementIterator;
//! Dimension of the grid. This needs to be one!
enum { gridDim = GridView::dimension };
......
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