Skip to content

Commit

Permalink
COMP: Fix name of class assertion failure in FEM module
Browse files Browse the repository at this point in the history
Fix name of class assertion failure for
`itk::fem::FEMExceptionLinearSystemBounds`: use the correct class name.

Fixes:
```
M:\Dashboard\ITK\Modules\Numerics\FEM\include\itkFEMLinearSystemWrapper.h(586,3):
error C2607: static assertion failed
[M:\Dashboard\ITK-build\Modules\Numerics\FEM\src\ITKFEM.vcxproj]
```

Raised for example in:
https://open.cdash.org/viewBuildError.php?buildid=9299844
  • Loading branch information
jhlegarreta authored and dzenanz committed Jan 15, 2024
1 parent b760b02 commit 2999b59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/Numerics/FEM/include/itkFEMLinearSystemWrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ class ITK_ABI_EXPORT FEMExceptionLinearSystemBounds : public FEMException
~FEMExceptionLinearSystemBounds() noexcept override;

/** Type related information. */
itkOverrideGetNameOfClassMacro(FEMExceptionLinearSystem);
itkOverrideGetNameOfClassMacro(FEMExceptionLinearSystemBounds);
};
} // end namespace fem
} // end namespace itk
Expand Down

0 comments on commit 2999b59

Please sign in to comment.