mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-29 14:00:49 +03:00
0024059: Eliminate compiler warning C4701 in MSVC++ with warning level 4
Removing pPotentially uninitialized local variable Got rid of most of warnings C4701: Potentially uninitialized local variable Removed redundant variable definitions. Refactored a part of AppParCurves_ResolConstraint CTOR. Replaced 0. to Precision::Confusion for tolerance vars; Changed values for min and max parameter vars; Got rid of redundant variables' initialization.
This commit is contained in:
@@ -65,7 +65,7 @@ void IGESGeom_ToolBSplineSurface::ReadOwnParams
|
||||
Standard_Integer I, J;
|
||||
Standard_Integer anIndexU, anIndexV, aDegU, aDegV;
|
||||
Standard_Boolean aCloseU, aCloseV, aPolynom, aPeriodU, aPeriodV;
|
||||
Standard_Real aUmin, aUmax, aVmin, aVmax;
|
||||
Standard_Real aUmin, aUmax, aVmin = 0., aVmax = 0.;
|
||||
Standard_Real tempVal;
|
||||
gp_XYZ tempXYZ;
|
||||
Handle(TColStd_HArray1OfReal) allKnotsU;
|
||||
|
Reference in New Issue
Block a user