From d18f44fa7b265aba73cd11fe03d78dbf5c46a045 Mon Sep 17 00:00:00 2001
From: Rene Milk <rene.milk@wwu.de>
Date: Fri, 26 Aug 2016 17:04:08 +0200
Subject: [PATCH] fix old enum nameing usage

---
 dune/xt/la/container/container-interface.hh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dune/xt/la/container/container-interface.hh b/dune/xt/la/container/container-interface.hh
index bff8dfbef..551a4580d 100644
--- a/dune/xt/la/container/container-interface.hh
+++ b/dune/xt/la/container/container-interface.hh
@@ -42,7 +42,7 @@ static constexpr Backends default_backend =
 #elif HAVE_DUNE_ISTL
     Backends::istl_sparse;
 #else
-    ChooseBackend::common_sparse;
+    Backends::common_sparse;
 #endif
 
 static constexpr Backends default_sparse_backend =
@@ -51,7 +51,7 @@ static constexpr Backends default_sparse_backend =
 #elif HAVE_DUNE_ISTL
     Backends::istl_sparse;
 #else
-    ChooseBackend::common_sparse;
+    Backends::common_sparse;
 #endif
 
 static constexpr Backends default_dense_backend =
-- 
GitLab