From 5a5078d043b22e02f8ceb7a09fa92249953e74e3 Mon Sep 17 00:00:00 2001
From: Christoph Lehmann <christoph.lehmann@ufz.de>
Date: Thu, 16 Jun 2016 19:55:41 +0200
Subject: [PATCH] [T] removed unneeded typename

---
 Tests/NumLib/TestCoordinatesMapping.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Tests/NumLib/TestCoordinatesMapping.cpp b/Tests/NumLib/TestCoordinatesMapping.cpp
index a5568a19083..a8ba2095974 100644
--- a/Tests/NumLib/TestCoordinatesMapping.cpp
+++ b/Tests/NumLib/TestCoordinatesMapping.cpp
@@ -279,10 +279,10 @@ TYPED_TEST(NumLibFemNaturalCoordinatesMappingTest, CheckZeroVolume)
 
 TEST(NumLib, FemNaturalCoordinatesMappingLineY)
 {
-    typedef typename ::detail::EigenMatrixType<2, 1>::type NodalVector;
-    typedef typename ::detail::EigenMatrixType<1, 2>::type DimNodalMatrix;
-    typedef typename ::detail::EigenMatrixType<1, 1>::type DimMatrix;
-    typedef typename ::detail::EigenMatrixType<2, 2>::type GlobalDimNodalMatrix;
+    typedef ::detail::EigenMatrixType<2, 1>::type NodalVector;
+    typedef ::detail::EigenMatrixType<1, 2>::type DimNodalMatrix;
+    typedef ::detail::EigenMatrixType<1, 1>::type DimMatrix;
+    typedef ::detail::EigenMatrixType<2, 2>::type GlobalDimNodalMatrix;
     // Shape data type
     typedef ShapeMatrices<NodalVector,DimNodalMatrix,DimMatrix,GlobalDimNodalMatrix> ShapeMatricesType;
     typedef NaturalCoordinatesMapping<MeshLib::Line, ShapeLine2, ShapeMatricesType> MappingType;
-- 
GitLab