mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-18 07:57:31 +08:00
0031035: Coding - uninitialized class fields reported by Visual Studio Code Analysis
Added initialization of fields that had not initialization Added default constructors to classes without constructors
This commit is contained in:
@@ -581,8 +581,11 @@ Standard_Real BRepBuilderAPI_FastSewing::Compute3DRange()
|
||||
BRepBuilderAPI_FastSewing::NodeInspector::
|
||||
NodeInspector(const NCollection_Vector<FS_Vertex>& theVec,
|
||||
const gp_Pnt& thePnt,
|
||||
const Standard_Real theTol):
|
||||
myVecOfVertexes(theVec), myPoint(thePnt), myResID(-1)
|
||||
const Standard_Real theTol)
|
||||
: myVecOfVertexes(theVec),
|
||||
myPoint(thePnt),
|
||||
myResID(-1),
|
||||
myIsFindingEnable(Standard_False)
|
||||
{
|
||||
mySQToler = theTol*theTol;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user