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

use tuple instead of Tuple

[[Imported from SVN: r998]]
parent dd49596a
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ namespace Dune
IdentityMap,
IdentityMap> PropertiesGraph;
typedef Dune::Tuple<MatrixGraph*,PropertiesGraph*> GraphTuple;
typedef Dune::tuple<MatrixGraph*,PropertiesGraph*> GraphTuple;
template<class OF, class T>
static GraphTuple create(const M& matrix, T& excluded,
......@@ -64,7 +64,7 @@ namespace Dune
typename SubGraph::EdgeIndexMap>
PropertiesGraph;
typedef Dune::Tuple<MatrixGraph*,PropertiesGraph*,SubGraph*> GraphTuple;
typedef Dune::tuple<MatrixGraph*,PropertiesGraph*,SubGraph*> GraphTuple;
template<class OF, class T, class PI>
static GraphTuple create(const M& matrix, T& excluded,
......
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