Skip to content
Snippets Groups Projects
Commit 194b7ee0 authored by Martin Nolte's avatar Martin Nolte
Browse files

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

parent 96ec7f87
Branches
Tags
1 merge request!119[bugfix] use std::tuple instead of plain tuple
Pipeline #
......@@ -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));
}
// //////////////////////////////
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment