You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An attempt to instantiate OpenCLVector<T> for a specific template argument T triggers compile errors. For example:
// Template instantiation for T = float.template classitk::OpenCLVector<float>;
VS2022 output:
ITKimprovements\itkOpenCLVector.hxx(100,42): error C2039: 'map': is not a member of 'itk::OpenCLVector<float>'
ITKimprovements\itkOpenCLVector.hxx(137,43): error C2039: 'GetLength': is not a member of 'itk::Vector<float,3>'
An attempt to instantiate
OpenCLVector<T>
for a specific template argumentT
triggers compile errors. For example:VS2022 output:
Affected lines of code:
elastix/Common/OpenCL/ITKimprovements/itkOpenCLVector.hxx
Line 100 in 0852e7a
elastix/Common/OpenCL/ITKimprovements/itkOpenCLVector.hxx
Line 137 in 0852e7a
I guess these errors can be fixed easily. But are the affected member functions
operator[]
andWrite
) really necessary? Or can they simply be removed?@dpshamonin Denis, do you still remember...?
The text was updated successfully, but these errors were encountered: