mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-04 13:13:25 +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:
@@ -17,7 +17,11 @@
|
||||
|
||||
#include <StepVisual_DirectionCountSelect.hxx>
|
||||
|
||||
StepVisual_DirectionCountSelect::StepVisual_DirectionCountSelect() {}
|
||||
StepVisual_DirectionCountSelect::StepVisual_DirectionCountSelect() :
|
||||
theUDirectionCount(0),
|
||||
theVDirectionCount(0),
|
||||
theTypeOfContent(0)
|
||||
{}
|
||||
|
||||
void StepVisual_DirectionCountSelect::SetTypeOfContent(const Standard_Integer aType)
|
||||
{
|
||||
|
Reference in New Issue
Block a user