Skip to content

Commit

Permalink
COMP: fix VS2017 compile error in itkFEMElementStd.h
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
dzenanz committed Oct 11, 2021
1 parent 52477f3 commit 182d302
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/Numerics/FEM/include/itkFEMElementStd.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 182d302

Please sign in to comment.