From 1b0ac2b1fd2282a0a5d3bb6a17785387a1f55796 Mon Sep 17 00:00:00 2001
From: Markus Blatt <mblatt@dune-project.org>
Date: Tue, 28 Mar 2006 12:03:09 +0000
Subject: [PATCH] Removed unused variable.

[[Imported from SVN: r550]]
---
 istl/paamg/indicescoarsener.hh | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/istl/paamg/indicescoarsener.hh b/istl/paamg/indicescoarsener.hh
index a0e372a2c..08858b264 100644
--- a/istl/paamg/indicescoarsener.hh
+++ b/istl/paamg/indicescoarsener.hh
@@ -309,9 +309,7 @@ namespace Dune
              aggregates[index->localIndexPair().local()] !=
              AggregatesMap<typename Graph::VertexDescriptor>::ISOLATED)
           {
-            typename Graph::VertexDescriptor aggregate = index->localIndexPair().local();
-            //std::cout<<* coarseLookup.pair(aggregates[aggregate]) << " also present on "<<neighbour->first<<std::endl;
-            assert(aggregates[aggregate]<(int)attributes.size());
+            assert(aggregates[index->localIndexPair().local()]<(int)attributes.size());
             assert(attributes[aggregates[index->localIndexPair().local()]] == std::numeric_limits<char>::max()
                    || attributes[aggregates[index->localIndexPair().local()]] == index->attribute());
             attributes[aggregates[index->localIndexPair().local()]] = index->attribute();
-- 
GitLab