From 0f0b8760402683ea70f391866a822865aa614156 Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@dune-project.org>
Date: Wed, 18 Feb 2009 15:15:12 +0000
Subject: [PATCH] use tuple instead of Tuple

[[Imported from SVN: r998]]
---
 istl/paamg/graphcreator.hh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/istl/paamg/graphcreator.hh b/istl/paamg/graphcreator.hh
index b10b5120c..e8db8b47d 100644
--- a/istl/paamg/graphcreator.hh
+++ b/istl/paamg/graphcreator.hh
@@ -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,
-- 
GitLab