mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-24 13:50:49 +03:00
0024275: Cppcheck warnings on uninitialized class members
Removed warning of cppcheck on uninitialized class members for non-array cases New additional compilation warnings on Windows platform from file OSD_Path.cxx were fixed Warnings about wrong initialization removed
This commit is contained in:
@@ -26,7 +26,7 @@
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
PXCAFDoc_Area::PXCAFDoc_Area () { }
|
||||
PXCAFDoc_Area::PXCAFDoc_Area () : myValue(0.) { }
|
||||
|
||||
//=======================================================================
|
||||
//function : PXCAFDoc_Area
|
||||
|
@@ -25,7 +25,7 @@
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
PXCAFDoc_DimTol::PXCAFDoc_DimTol ()
|
||||
PXCAFDoc_DimTol::PXCAFDoc_DimTol () : myKind(0)
|
||||
{}
|
||||
|
||||
//=======================================================================
|
||||
|
@@ -25,7 +25,7 @@
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
PXCAFDoc_Material::PXCAFDoc_Material ()
|
||||
PXCAFDoc_Material::PXCAFDoc_Material () : myDensity(0.)
|
||||
{}
|
||||
|
||||
//=======================================================================
|
||||
|
@@ -26,7 +26,7 @@
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
PXCAFDoc_Volume::PXCAFDoc_Volume () { }
|
||||
PXCAFDoc_Volume::PXCAFDoc_Volume () : myValue(0.) { }
|
||||
|
||||
//=======================================================================
|
||||
//function : PXCAFDoc_Volume
|
||||
|
Reference in New Issue
Block a user