Minor corrections for debug messages

This commit is contained in:
Yoann Audouin 2022-10-12 11:24:26 +02:00
parent 60aec28a55
commit c8f2626526
2 changed files with 6 additions and 8 deletions

View File

@ -242,8 +242,9 @@ SMESH_Mesh::~SMESH_Mesh()
if(_pool) if(_pool)
DeletePoolThreads(); DeletePoolThreads();
if (!MYDEBUG) #ifndef _DEBUG_
fs::remove_all(tmp_folder); fs::remove_all(tmp_folder);
#endif
} }
//================================================================================ //================================================================================

View File

@ -63,10 +63,9 @@ using namespace std;
#ifdef _DEBUG_ #ifdef _DEBUG_
// enable printing algo + shape id + hypo used while meshing // enable printing algo + shape id + hypo used while meshing
//#define PRINT_WHO_COMPUTE_WHAT #define PRINT_WHO_COMPUTE_WHAT
#endif #endif
//#define PRINT_WHO_COMPUTE_WHAT
//============================================================================= //=============================================================================
/*! /*!
* \brief Allocate some memory at construction and release it at destruction. * \brief Allocate some memory at construction and release it at destruction.
@ -1646,11 +1645,9 @@ bool SMESH_subMesh::ComputeStateEngine(compute_event event)
#ifdef PRINT_WHO_COMPUTE_WHAT #ifdef PRINT_WHO_COMPUTE_WHAT
for (subS.ReInit(); subS.More(); subS.Next()) for (subS.ReInit(); subS.More(); subS.Next())
{ {
const std::list <const SMESHDS_Hypothesis *> & hyps SMESH_MeshLocker myLocker(_father);
{ const std::list <const SMESHDS_Hypothesis *> & hyps =
SMESH_MeshLocker myLocker(_father); _algo->GetUsedHypothesis( *_father, _subShape );
hyps = _algo->GetUsedHypothesis( *_father, _subShape );
}
SMESH_Comment hypStr; SMESH_Comment hypStr;
if ( !hyps.empty() ) if ( !hyps.empty() )
{ {