Skip to content
Snippets Groups Projects
Commit 5ff030e5 authored by Cory Quammen's avatar Cory Quammen
Browse files

vtkFFT.txx: add needed but missing typename keyword

This fixes a compilation error on Intel Classic compilers.
parent 587a612b
No related merge requests found
......@@ -327,7 +327,7 @@ vtkSmartPointer<vtkFFT::vtkScalarNumberArray> vtkFFT::Csd(vtkScalarNumberArray*
vtkSMPTools::Fill(averageRange.begin(), averageRange.end(), 0.0);
auto resRange = vtk::DataArrayTupleRange(result);
using ConstTupleRef = decltype(resRange)::ConstTupleReferenceType;
using ConstTupleRef = typename decltype(resRange)::ConstTupleReferenceType;
for (unsigned int i = 0; i < shape[0]; ++i)
{
auto begin = resRange.cbegin() + i * shape[1];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment