From: eap Date: Wed, 15 Mar 2017 10:22:02 +0000 (+0300) Subject: 23258: [CEA 1804] Do not merge the middle nodes of quadratic elements X-Git-Tag: V8_3_0a2~1 X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=commitdiff_plain;h=88d37b48bdda91c42c4ddcdb0f1c451c05fb552e 23258: [CEA 1804] Do not merge the middle nodes of quadratic elements Fix Python dump and compilation on Debian-7 --- diff --git a/src/SMDS/SMDS_VolumeTool.hxx b/src/SMDS/SMDS_VolumeTool.hxx index 5c2c882f6..4e018c0c7 100644 --- a/src/SMDS/SMDS_VolumeTool.hxx +++ b/src/SMDS/SMDS_VolumeTool.hxx @@ -63,7 +63,7 @@ class SMDS_EXPORT SMDS_VolumeTool bool Set( const SMDS_MeshElement* theVolume, const bool ignoreCentralNodes = true, - const std::vector* nodes = NULL); + const std::vector* nodes = 0); // Set volume. // Return false if theVolume is not of type SMDSAbs_Volume. // ignoreCentralNodes makes skip nodes at face centers when returning diff --git a/src/SMESH_I/SMESH_Group_i.cxx b/src/SMESH_I/SMESH_Group_i.cxx index 7df1384ca..d9c4b0961 100644 --- a/src/SMESH_I/SMESH_Group_i.cxx +++ b/src/SMESH_I/SMESH_Group_i.cxx @@ -480,7 +480,6 @@ SMESH::long_array* SMESH_GroupBase_i::GetListOfID() if ( 0 < aSize && aSize < 100 ) // for comfortable testing ;) std::sort( &aRes[0], &aRes[0]+aSize ); } - MESSAGE("get list of IDs of a vague group"); return aRes._retn(); } @@ -673,7 +672,6 @@ void SMESH_GroupBase_i::SetColorNumber(CORBA::Long color) aGroupDS->SetColorGroup(color); TPythonDump()<