From 4afb3b81c59d24341ef0ce49e68853622ab610db Mon Sep 17 00:00:00 2001
From: Guillaume Pasero <guillaume.pasero@c-s.fr>
Date: Thu, 19 Jan 2017 17:57:10 +0100
Subject: [PATCH] COMP: no typename outside template

---
 .../AppDomainTransform/app/otbDomainTransform.cxx             | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Modules/Applications/AppDomainTransform/app/otbDomainTransform.cxx b/Modules/Applications/AppDomainTransform/app/otbDomainTransform.cxx
index 3931db62fa..22f2834e01 100644
--- a/Modules/Applications/AppDomainTransform/app/otbDomainTransform.cxx
+++ b/Modules/Applications/AppDomainTransform/app/otbDomainTransform.cxx
@@ -281,8 +281,8 @@ private:
           {
           otbAppLogINFO( << "Applying Shift image filter" );
           typedef itk::FFTShiftImageFilter<
-            typename FFTFilter::OutputImageType,
-            typename FFTFilter::OutputImageType > FFTShiftFilterType;
+            FFTFilter::OutputImageType,
+            FFTFilter::OutputImageType > FFTShiftFilterType;
 
           FFTShiftFilterType::Pointer
             fftShiftFilter = FFTShiftFilterType::New();
-- 
GitLab