From e22331ddc1cd5c37a79a9d318b733c6a0a2ff3c0 Mon Sep 17 00:00:00 2001 From: Norihiro Watanabe <norihiro.watanabe@ufz.de> Date: Tue, 8 Apr 2014 20:31:39 +0200 Subject: [PATCH] use struct instead of template alias for gcc4.6 --- Tests/NumLib/TestFe.cpp | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/Tests/NumLib/TestFe.cpp b/Tests/NumLib/TestFe.cpp index 6cc1215c82c..c2bccba1a31 100644 --- a/Tests/NumLib/TestFe.cpp +++ b/Tests/NumLib/TestFe.cpp @@ -51,7 +51,10 @@ class TestFeLINE2 { public: template <class T_MATRIX_TYPES> - using FeType = NumLib::FeLINE2<typename T_MATRIX_TYPES::NodalVectorType, typename T_MATRIX_TYPES::DimNodalMatrixType, typename T_MATRIX_TYPES::DimMatrixType>; + struct FeType + { + typedef NumLib::FeLINE2<typename T_MATRIX_TYPES::NodalVectorType, typename T_MATRIX_TYPES::DimNodalMatrixType, typename T_MATRIX_TYPES::DimMatrixType> type; + }; typedef MeshLib::Line MeshElementType; static const unsigned dim = MeshElementType::dimension; static const unsigned e_nnodes = MeshElementType::n_all_nodes; @@ -93,7 +96,10 @@ class TestFeQUAD4 { public: template <class T_MATRIX_TYPES> - using FeType = NumLib::FeQUAD4<typename T_MATRIX_TYPES::NodalVectorType, typename T_MATRIX_TYPES::DimNodalMatrixType, typename T_MATRIX_TYPES::DimMatrixType>; + struct FeType + { + typedef NumLib::FeQUAD4<typename T_MATRIX_TYPES::NodalVectorType, typename T_MATRIX_TYPES::DimNodalMatrixType, typename T_MATRIX_TYPES::DimMatrixType> type; + }; typedef MeshLib::Quad MeshElementType; static const unsigned dim = 2; //MeshElementType::dimension; static const unsigned e_nnodes = MeshElementType::n_all_nodes; @@ -143,7 +149,10 @@ class TestFeHEX8 { public: template <class T_MATRIX_TYPES> - using FeType = NumLib::FeHEX8<typename T_MATRIX_TYPES::NodalVectorType, typename T_MATRIX_TYPES::DimNodalMatrixType, typename T_MATRIX_TYPES::DimMatrixType>; + struct FeType + { + typedef NumLib::FeHEX8<typename T_MATRIX_TYPES::NodalVectorType, typename T_MATRIX_TYPES::DimNodalMatrixType, typename T_MATRIX_TYPES::DimMatrixType> type; + }; typedef MeshLib::Hex MeshElementType; static const unsigned dim = 3; //MeshElementType::dimension; static const unsigned e_nnodes = MeshElementType::n_all_nodes; @@ -213,7 +222,7 @@ class NumLibFemIsoTest : public ::testing::Test, public T::T_FE typedef typename T_MATRIX_TYPES::DimNodalMatrixType DimNodalMatrix; typedef typename T_MATRIX_TYPES::DimMatrixType DimMatrix; // Finite element type - typedef typename T_FE::template FeType<T_MATRIX_TYPES>::type FeType; + typedef typename T_FE::template FeType<T_MATRIX_TYPES>::type::type FeType; // Shape matrix data type typedef typename FeType::ShapeMatricesType ShapeMatricesType; typedef typename T_FE::MeshElementType MeshElementType; -- GitLab