From 7983f664dc411d83f251edef43d1e8ac9fc9e45d Mon Sep 17 00:00:00 2001 From: Paul RASCLE Date: Wed, 8 Jul 2015 23:33:33 +0200 Subject: [PATCH] compilation gcc 4.8.4 --- src/HYDROData/HYDROData_PolylineOperator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HYDROData/HYDROData_PolylineOperator.cxx b/src/HYDROData/HYDROData_PolylineOperator.cxx index ac75dcd8..ae9a70f9 100644 --- a/src/HYDROData/HYDROData_PolylineOperator.cxx +++ b/src/HYDROData/HYDROData_PolylineOperator.cxx @@ -156,7 +156,7 @@ static void CurveToWire(const TCurveType& theCurve, TopoDS_Wire& theWire) { BRep_Builder aBulder; aBulder.MakeWire(theWire); - for (TCurveType::Iterator aEIt(theCurve); aEIt.More(); aEIt.Next()) + for (typename TCurveType::Iterator aEIt(theCurve); aEIt.More(); aEIt.Next()) { aBulder.Add(theWire, aEIt.Value()); } -- 2.39.2