1
0
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:
ddzama 2022-03-31 07:26:39 +03:00 committed by smoskvin
parent ee6581adbe
commit 878ea8cd2b
2 changed files with 4 additions and 1 deletions

View File

@ -69,7 +69,8 @@ protected:
{
protected:
Iterator()
: myICurBlock (0),
: myVector (nullptr),
myICurBlock (0),
myIEndBlock (0),
myCurIndex (0),
myEndIndex (0) {}

View File

@ -42,6 +42,8 @@ public:
BVHThread()
: OSD_Thread(),
myPool(nullptr),
myMutex(),
myToCatchFpe (Standard_False)
{