From 1d8e33e8e2caf15cb822294c4a997d195598fd04 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Carsten=20Gr=C3=A4ser?= <graeser@dune-project.org>
Date: Fri, 1 Jul 2016 13:55:14 +0200
Subject: [PATCH] [cleanup] Replace Dune::Solvers::Hybrid by Dune::Hybrid

---
 dune/solvers/common/genericvectortools.hh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dune/solvers/common/genericvectortools.hh b/dune/solvers/common/genericvectortools.hh
index 4bbb78dd..b966cf88 100644
--- a/dune/solvers/common/genericvectortools.hh
+++ b/dune/solvers/common/genericvectortools.hh
@@ -15,12 +15,12 @@
 #include <dune/common/fmatrix.hh>
 #include <dune/common/diagonalmatrix.hh>
 #include <dune/common/indices.hh>
+#include <dune/common/hybridutilities.hh>
 
 #include <dune/istl/scaledidmatrix.hh>
 #include <dune/istl/bcrsmatrix.hh>
 #include <dune/istl/bvector.hh>
 
-#include <dune/solvers/common/algorithm.hh>
 #include <dune/solvers/operators/sumoperator.hh>
 
 /** \brief Various tools for working with istl vectors of arbitrary nesting depth
@@ -32,7 +32,7 @@ struct GenericVector
     template <class VectorType>
     static void writeBinary(std::ostream& s, const VectorType& v)
     {
-        Dune::Solvers::Hybrid::forEach(v, [&](auto&& vi) {
+        Dune::Hybrid::forEach(v, [&](auto&& vi) {
             GenericVector::writeBinary(s, vi);
         });
     }
@@ -51,7 +51,7 @@ struct GenericVector
     template <class VectorType>
     static void readBinary(std::istream& s, VectorType& v)
     {
-        Dune::Solvers::Hybrid::forEach(v, [&](auto&& vi) {
+        Dune::Hybrid::forEach(v, [&](auto&& vi) {
             GenericVector::readBinary(s, vi);
         });
     }
-- 
GitLab