From: Paul RASCLE Date: Wed, 8 Jul 2015 21:33:33 +0000 (+0200) Subject: compilation gcc 4.8.4 X-Git-Tag: BR_quadtree_20150925~15^2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=7983f664dc411d83f251edef43d1e8ac9fc9e45d;p=modules%2Fhydro.git compilation gcc 4.8.4 --- 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()); }