From 18d66dd11fc76c743a2a9f6db9a83d2867b93e0e Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@dune-project.org>
Date: Tue, 30 Aug 2005 16:35:42 +0000
Subject: [PATCH] added missing const

[[Imported from SVN: r310]]
---
 istl/bvector.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/istl/bvector.hh b/istl/bvector.hh
index 9b6eec2be..64a956345 100644
--- a/istl/bvector.hh
+++ b/istl/bvector.hh
@@ -774,7 +774,7 @@ namespace Dune {
     template<class V>
     bool includesindexset (const V& y)
     {
-      typename V::Iterator e=y.end();
+      typename V::ConstIterator e=y.end();
       for (size_type i=0; i<this->n; i++)
         if (y.find((this->j)[i])==e)
           return false;
-- 
GitLab