From 182d3028230a9f441d582cb52ec740f4bd6f3396 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C5=BEenan=20Zuki=C4=87?= Date: Mon, 11 Oct 2021 09:54:36 -0400 Subject: [PATCH] COMP: fix VS2017 compile error in itkFEMElementStd.h m:\dashboard\itk\modules\numerics\fem\include\itkFEMElementStd.h(75): error C2886: 'FEMLightObject': symbol cannot be used in a member using-declaration [M:\Dashboard\ITK-build\Modules\Numerics\FEM\src\ITKFEM.vcxproj] Fixes #2789. --- Modules/Numerics/FEM/include/itkFEMElementStd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Numerics/FEM/include/itkFEMElementStd.h b/Modules/Numerics/FEM/include/itkFEMElementStd.h index a9c5ac40d7d..60a48c70664 100644 --- a/Modules/Numerics/FEM/include/itkFEMElementStd.h +++ b/Modules/Numerics/FEM/include/itkFEMElementStd.h @@ -72,7 +72,7 @@ class ITK_TEMPLATE_EXPORT ElementStd : public TBaseClass using typename Superclass::Float; using typename Superclass::MatrixType; using typename Superclass::VectorType; - using typename Superclass::LoadType; + using LoadType = typename Superclass::LoadType; using typename Superclass::LoadPointer; using typename Superclass::NodeIDType; using typename Superclass::DegreeOfFreedomIDType;