mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-12 00:29:17 +05:00
bos #24085 fix TSplitMethod method for Windows (to avoid crash)
This commit is contained in:
parent
7e2390f8c3
commit
3feb7ac701
@ -1808,6 +1808,17 @@ namespace
|
|||||||
TSplitMethod( int nbTet=0, const int* conn=0, bool addNode=false)
|
TSplitMethod( int nbTet=0, const int* conn=0, bool addNode=false)
|
||||||
: _nbSplits(nbTet), _nbCorners(4), _connectivity(conn), _baryNode(addNode), _ownConn(false) {}
|
: _nbSplits(nbTet), _nbCorners(4), _connectivity(conn), _baryNode(addNode), _ownConn(false) {}
|
||||||
~TSplitMethod() { if ( _ownConn ) delete [] _connectivity; _connectivity = 0; }
|
~TSplitMethod() { if ( _ownConn ) delete [] _connectivity; _connectivity = 0; }
|
||||||
|
TSplitMethod(const TSplitMethod &splitMethod)
|
||||||
|
: _nbSplits(splitMethod._nbSplits),
|
||||||
|
_nbCorners(splitMethod._nbCorners),
|
||||||
|
_baryNode(splitMethod._baryNode),
|
||||||
|
_ownConn(splitMethod._ownConn),
|
||||||
|
_faceBaryNode(splitMethod._faceBaryNode)
|
||||||
|
{
|
||||||
|
_connectivity = splitMethod._connectivity;
|
||||||
|
const_cast<TSplitMethod&>(splitMethod)._connectivity = nullptr;
|
||||||
|
const_cast<TSplitMethod&>(splitMethod)._ownConn = false;
|
||||||
|
}
|
||||||
bool hasFacet( const TTriangleFacet& facet ) const
|
bool hasFacet( const TTriangleFacet& facet ) const
|
||||||
{
|
{
|
||||||
if ( _nbCorners == 4 )
|
if ( _nbCorners == 4 )
|
||||||
|
Loading…
Reference in New Issue
Block a user