Skip to content
Snippets Groups Projects
Commit b85b1591 authored by Markus Blatt's avatar Markus Blatt
Browse files

Use new tuple interface.

[[Imported from SVN: r1013]]
parent 4e628ae1
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,7 @@ namespace Dune
static void free(GraphTuple& graphs)
{
delete Element<1>::get(graphs);
delete get<1>(graphs);
}
};
......@@ -86,8 +86,8 @@ namespace Dune
static void free(GraphTuple& graphs)
{
delete Element<2>::get(graphs);
delete Element<1>::get(graphs);
delete get<2>(graphs);
delete get<1>(graphs);
}
};
......
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