From 20ffd35fe6f09a6376afb85e65d6e6cbf00173fe Mon Sep 17 00:00:00 2001
From: Tobias Leibner <tobias.leibner@googlemail.com>
Date: Wed, 22 Aug 2018 13:33:57 +0200
Subject: [PATCH] [common.matrix.sparse] fix compilation

---
 .gitsuper                                    | 4 ++--
 dune/xt/la/container/common/matrix/sparse.hh | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitsuper b/.gitsuper
index e6950a840..47bcfbda4 100644
--- a/.gitsuper
+++ b/.gitsuper
@@ -18,7 +18,7 @@ status = 1a3bcab04b011a5d6e44f9983cae6ff89fa695e8 bin (heads/master)
 	 b8cf8efc32e46511990b691afee55da3b7af15c8 dune-xt-data (heads/master)
 	 0c9df39934e23b950f357c912b4c800b86de683f dune-xt-functions (heads/dailywork_tleibner)
 	 dd30fcd7d4485eb2a8158d5ddf01333f58502c40 dune-xt-grid (heads/master)
-	+8c660bdad165a189b44c3f6e92e73e07cff1d774 dune-xt-la (heads/dailywork-tleibner)
+	+f19172aa93d2a23d844848780dfffc81785013fc dune-xt-la (heads/dailywork-tleibner)
 	 09d0378f616b94d68bcdd9fc6114813181849ec0 scripts (heads/master)
 commit = 02dfba6e3d4fa4659a18ce0f63b5956e1e557f16
 
@@ -115,7 +115,7 @@ commit = dd30fcd7d4485eb2a8158d5ddf01333f58502c40
 [submodule.dune-xt-la]
 remote = git@github.com:dune-community/dune-xt-la.git
 status = 2424627f0ad5de7e4aaa5e7f48bc2a02414d95a1 .vcsetup (heads/master)
-commit = 8c660bdad165a189b44c3f6e92e73e07cff1d774
+commit = f19172aa93d2a23d844848780dfffc81785013fc
 
 [submodule.scripts]
 remote = https://github.com/wwu-numerik/scripts.git
diff --git a/dune/xt/la/container/common/matrix/sparse.hh b/dune/xt/la/container/common/matrix/sparse.hh
index 3d11a0f22..16685738e 100644
--- a/dune/xt/la/container/common/matrix/sparse.hh
+++ b/dune/xt/la/container/common/matrix/sparse.hh
@@ -597,8 +597,8 @@ class CommonSparseMatrix<ScalarImp, Common::StorageLayout::csc>
     : public MatrixInterface<internal::CommonSparseMatrixTraits<ScalarImp, Common::StorageLayout::csc>, ScalarImp>
 {
   using ThisType = CommonSparseMatrix<ScalarImp, Common::StorageLayout::csc>;
-  using = MatrixInterface<internal::CommonSparseMatrixTraits<ScalarImp, Common::StorageLayout::csc>, ScalarImp>
-      MatrixInterfaceType;
+  using MatrixInterfaceType =
+      MatrixInterface<internal::CommonSparseMatrixTraits<ScalarImp, Common::StorageLayout::csc>, ScalarImp>;
 
 public:
   using Traits = typename MatrixInterfaceType::Traits;
-- 
GitLab