fix remaining compilation issues on Windows - to be reviewed

This commit is contained in:
Nabil Ghodbane 2023-03-28 16:28:16 +02:00
parent 3802af1251
commit 2271025156
3 changed files with 2 additions and 12 deletions

View File

@ -46,16 +46,6 @@ SMESH_ParallelMesh_i::SMESH_ParallelMesh_i( PortableServer::POA_ptr thePOA,
{
}
//=============================================================================
/*!
* Destructor
*/
//=============================================================================
SMESH_ParallelMesh_i::~SMESH_ParallelMesh_i()
{
}
//=============================================================================
namespace
{

View File

@ -44,7 +44,7 @@ class SMESH_I_EXPORT SMESH_ParallelMesh_i:
SMESH_ParallelMesh_i( PortableServer::POA_ptr thePOA,
SMESH_Gen_i* myGen_i ):SMESH_Mesh_i(thePOA, myGen_i){};
virtual ~SMESH_ParallelMesh_i();
virtual ~SMESH_ParallelMesh_i(){};
};

View File

@ -43,7 +43,7 @@ class SMESH_I_EXPORT SMESH_SequentialMesh_i:
SMESH_SequentialMesh_i( PortableServer::POA_ptr thePOA,
SMESH_Gen_i* myGen_i ):SMESH_Mesh_i(thePOA, myGen_i){};
virtual ~SMESH_SequentialMesh_i();
virtual ~SMESH_SequentialMesh_i(){};
};