mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0023040: Annoying warnings in NCollection_Vector
Fixed initialization order of class members in constructors
This commit is contained in:
parent
c45bc3b03a
commit
50a0744c2c
@ -23,9 +23,7 @@
|
||||
inline IntPatch_Point::IntPatch_Point ()
|
||||
: para(0.0), tol(0.0), tgt(Standard_False), mult(Standard_False),
|
||||
onS1(Standard_False), vtxonS1(Standard_False), prm1(0.0),
|
||||
onS2(Standard_False), vtxonS2(Standard_False), prm2(0.0),
|
||||
vS1(NULL), vS2(NULL),
|
||||
arcS1(NULL), arcS2(NULL)
|
||||
onS2(Standard_False), vtxonS2(Standard_False), prm2(0.0)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -53,12 +53,18 @@ class NCollection_BaseVector
|
||||
protected:
|
||||
MemBlock (NCollection_BaseAllocator* theAlloc)
|
||||
: myAlloc(theAlloc),
|
||||
myFirstInd(0), myLength(0), mySize(0), myData(0L) {}
|
||||
myData(NULL),
|
||||
myFirstInd(0),
|
||||
myLength(0),
|
||||
mySize(0) {}
|
||||
MemBlock (const Standard_Integer theFirstInd,
|
||||
const Standard_Integer theLength,
|
||||
NCollection_BaseAllocator* theAlloc)
|
||||
: myAlloc(theAlloc),
|
||||
myFirstInd(theFirstInd), myLength(0), mySize(theLength), myData(0L) {}
|
||||
myData(NULL),
|
||||
myFirstInd(theFirstInd),
|
||||
myLength(0),
|
||||
mySize(theLength) {}
|
||||
virtual void Reinit (const Standard_Integer,
|
||||
const Standard_Integer) {}
|
||||
Standard_Integer FirstIndex () const { return myFirstInd; }
|
||||
@ -74,11 +80,11 @@ class NCollection_BaseVector
|
||||
Standard_EXPORT Standard_Integer
|
||||
GetIndexV (void * theItem, const size_t theSz) const;
|
||||
protected:
|
||||
NCollection_BaseAllocator* myAlloc;
|
||||
void* myData;
|
||||
Standard_Integer myFirstInd;
|
||||
Standard_Integer myLength;
|
||||
Standard_Integer mySize;
|
||||
NCollection_BaseAllocator * myAlloc;
|
||||
void * myData;
|
||||
friend class NCollection_BaseVector;
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user