Skip to content
Snippets Groups Projects

[bugfix] use std::tuple instead of plain tuple

Merged Martin Nolte requested to merge bugfix/use-std-tuple-in-onedgrid into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -277,7 +277,7 @@ bool Dune::OneDGrid::adapt()
if (toplevelRefinement) {
OneDGridList<OneDEntityImp<0> > newVertices;
OneDGridList<OneDEntityImp<1> > newElements;
entityImps_.push_back(tuple<OneDGridList<OneDEntityImp<0> >, OneDGridList<OneDEntityImp<1> > >(newVertices, newElements));
entityImps_.push_back(std::tuple<OneDGridList<OneDEntityImp<0> >, OneDGridList<OneDEntityImp<1> > >(newVertices, newElements));
}
// //////////////////////////////
Loading