From 5ad8a0e03ab9a63c399d2859b8f9a750b1afd96d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Oberhuber?= <oberhuber.tomas@gmail.com>
Date: Mon, 1 Feb 2021 16:30:41 +0100
Subject: [PATCH] Small fixes in matrix reader and writer.

---
 src/TNL/Matrices/MatrixReader.h | 1 -
 src/TNL/Matrices/MatrixWriter.h | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/TNL/Matrices/MatrixReader.h b/src/TNL/Matrices/MatrixReader.h
index b20ac0f973..b88047e683 100644
--- a/src/TNL/Matrices/MatrixReader.h
+++ b/src/TNL/Matrices/MatrixReader.h
@@ -81,7 +81,6 @@ class MatrixReader
 
 /// This is to prevent from appearing in Doxygen documentation.
 /// \cond HIDDEN_CLASS
-
 template< typename Matrix >
 class MatrixReader< Matrix, TNL::Devices::Host >
 {
diff --git a/src/TNL/Matrices/MatrixWriter.h b/src/TNL/Matrices/MatrixWriter.h
index 72d00a5569..41c3523f6f 100644
--- a/src/TNL/Matrices/MatrixWriter.h
+++ b/src/TNL/Matrices/MatrixWriter.h
@@ -123,7 +123,7 @@ class MatrixWriter
                             bool verbose = false );
 
    protected:
-      using HostMatrix = typename Matrix::Self< RealType, TNL::Devices::Host >;
+      using HostMatrix = typename Matrix::template Self< RealType, TNL::Devices::Host >;
 };
 
 /// This is to prevent from appearing in Doxygen documentation.
-- 
GitLab