Skip to content
Snippets Groups Projects
Commit f46593b8 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.

(cherry picked from commit 5ff030e5)
parent 7a2f1593
No related merge requests found
......@@ -324,7 +324,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