]> SALOME platform Git repositories - modules/hydro.git/commitdiff
Salome HOME
compilation gcc 4.8.4
authorPaul RASCLE <paul.rascle@edf.fr>
Wed, 8 Jul 2015 21:33:33 +0000 (23:33 +0200)
committerPaul RASCLE <paul.rascle@edf.fr>
Wed, 8 Jul 2015 21:33:33 +0000 (23:33 +0200)
src/HYDROData/HYDROData_PolylineOperator.cxx

index ac75dcd8dc2f9e0a453219a1d0937777355f9b6e..ae9a70f944d8c98bbd066e73bde5da0ddb585537 100644 (file)
@@ -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());
   }