0024399: ICC warnings 3280 "declaration hides..."
[occt.git] / src / BRepBlend / BRepBlend_AppFuncRstRst.cxx
index 83616d1..c07036c 100755 (executable)
@@ -32,18 +32,18 @@ BRepBlend_AppFuncRstRst::BRepBlend_AppFuncRstRst (Handle(BRepBlend_Line)& Line,
 
 void BRepBlend_AppFuncRstRst::Point(const Blend_AppFunction& Func,
                                    const Standard_Real Param,
-                                   const math_Vector& Sol,
+                                   const math_Vector& theSol,
                                    Blend_Point& Pnt)const
 {
   Pnt.SetValue(Func.Pnt1(), Func.Pnt2(),
               Param,
-              Sol(1), Sol(2));
+              theSol(1), theSol(2));
 }
 
-void BRepBlend_AppFuncRstRst::Vec(math_Vector& Sol,
+void BRepBlend_AppFuncRstRst::Vec(math_Vector& theSol,
                                  const Blend_Point& Pnt)const
 {
-  Sol(1) = Pnt.ParameterOnC1();
-  Sol(2) = Pnt.ParameterOnC2();
+  theSol(1) = Pnt.ParameterOnC1();
+  theSol(2) = Pnt.ParameterOnC2();
 }