mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0032910: Coding Rules - fix uninitialized class fields in constructor initialization block reported by VS2019/C++20
Microsoft Visual Studio Professional 2019 Version 16.11.11 std=c++20 Get rid of warnings about uninitialized class fields in constructor initialization block.
This commit is contained in:
parent
ee6581adbe
commit
878ea8cd2b
@ -69,7 +69,8 @@ protected:
|
||||
{
|
||||
protected:
|
||||
Iterator()
|
||||
: myICurBlock (0),
|
||||
: myVector (nullptr),
|
||||
myICurBlock (0),
|
||||
myIEndBlock (0),
|
||||
myCurIndex (0),
|
||||
myEndIndex (0) {}
|
||||
|
@ -42,6 +42,8 @@ public:
|
||||
|
||||
BVHThread()
|
||||
: OSD_Thread(),
|
||||
myPool(nullptr),
|
||||
myMutex(),
|
||||
myToCatchFpe (Standard_False)
|
||||
{
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user