From 88d37b48bdda91c42c4ddcdb0f1c451c05fb552e Mon Sep 17 00:00:00 2001 From: eap Date: Wed, 15 Mar 2017 13:22:02 +0300 Subject: [PATCH] 23258: [CEA 1804] Do not merge the middle nodes of quadratic elements Fix Python dump and compilation on Debian-7 --- src/SMDS/SMDS_VolumeTool.hxx | 2 +- src/SMESH_I/SMESH_Group_i.cxx | 2 -- src/SMESH_I/SMESH_MeshEditor_i.cxx | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) 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()<