From a8d3a4eafec8e8ab39d874c41bb0bf05b61ba45f Mon Sep 17 00:00:00 2001 From: Andreas Schenk <andreas_schenk@hms.harvard.edu> Date: Mon, 6 Oct 2014 17:05:09 -0400 Subject: [PATCH] fixed fft template instantiation for double precision compiles --- modules/img/alg/src/fft.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/img/alg/src/fft.cc b/modules/img/alg/src/fft.cc index 468bc4992..61cc3199c 100644 --- a/modules/img/alg/src/fft.cc +++ b/modules/img/alg/src/fft.cc @@ -268,7 +268,7 @@ ImageStateBasePtr FFTFnc::VisitState(const ImageStateImpl<T,D>& s) const } // force explicit instantiation to make intel compiler happy -template ImageStateBasePtr FFTFnc::VisitState<float,FrequencyDomain>(const ImageStateImpl<float,FrequencyDomain>& ) const; +template ImageStateBasePtr FFTFnc::VisitState<Real,FrequencyDomain>(const ImageStateImpl<Real,FrequencyDomain>& ) const; template ImageStateBasePtr FFTFnc::VisitState<unsigned short,SpatialDomain>(const ImageStateImpl<unsigned short,SpatialDomain>& ) const; } //alg ns -- GitLab