From 86716b86ce2e809507ead375832501036be98870 Mon Sep 17 00:00:00 2001
From: Markus Blatt <mblatt@dune-project.org>
Date: Tue, 15 Sep 2009 11:07:27 +0000
Subject: [PATCH] print size, too.

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

diff --git a/istl/interface.hh b/istl/interface.hh
index 65e218786..05170cb3b 100644
--- a/istl/interface.hh
+++ b/istl/interface.hh
@@ -516,10 +516,10 @@ namespace std
       os<<i->first<<": [ source=[";
       for(std::size_t j=0; j < i->second.first.size(); ++j)
         os<<i->second.first[j]<<" ";
-      os<<"] , target=[";
+      os<<"] size="<<i->second.first.size()<<", target=[";
       for(std::size_t j=0; j < i->second.second.size(); ++j)
         os<<i->second.second[j]<<" ";
-      os<<"]\n";
+      os<<"] size="<<i->second.second.size()<<"\n";
     }
     return os;
   }
-- 
GitLab