1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-03 14:10:33 +03:00

0024399: ICC warnings 3280 "declaration hides..."

Renamed local variables to avoid ICC compiler warnings about repeated names
This commit is contained in:
ski
2013-11-26 18:17:10 +04:00
committed by bugmaster
parent 9f37b47ddd
commit 75259fc556
24 changed files with 237 additions and 238 deletions

View File

@@ -31,18 +31,18 @@ BRepBlend_AppFunc::BRepBlend_AppFunc(Handle(BRepBlend_Line)& Line,
void BRepBlend_AppFunc::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), Sol(3), Sol(4));
theSol(1), theSol(2), theSol(3), theSol(4));
}
void BRepBlend_AppFunc::Vec(math_Vector& Sol,
void BRepBlend_AppFunc::Vec(math_Vector& theSol,
const Blend_Point& Pnt)const
{
Pnt.ParametersOnS1(Sol(1),Sol(2));
Pnt.ParametersOnS2(Sol(3),Sol(4));
Pnt.ParametersOnS1(theSol(1),theSol(2));
Pnt.ParametersOnS2(theSol(3),theSol(4));
}