1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +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

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