X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMDS%2FSMDS_MeshGroup.hxx;h=700eb5eaa9f9030089f9ac3b58cef97c86a381a2;hb=069b583dab475d377bc34e336ca7e618b8ef279c;hp=b605737bfab79d92af4df0b1dc95df4acfda169b;hpb=4c16067d4281f56bd07d3f92fb63fff9c0c1d169;p=modules%2Fsmesh.git diff --git a/src/SMDS/SMDS_MeshGroup.hxx b/src/SMDS/SMDS_MeshGroup.hxx index b605737bf..700eb5eaa 100644 --- a/src/SMDS/SMDS_MeshGroup.hxx +++ b/src/SMDS/SMDS_MeshGroup.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2021 CEA/DEN, EDF R&D, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -33,8 +33,6 @@ #include "SMDS_Mesh.hxx" #include -#include - class SMDS_EXPORT SMDS_MeshGroup: public SMDS_MeshObject, SMDS_ElementHolder { public: @@ -43,7 +41,7 @@ class SMDS_EXPORT SMDS_MeshGroup: public SMDS_MeshObject, SMDS_ElementHolder void SetType (const SMDSAbs_ElementType theType); void Clear(); - void Reserve(size_t nbElems) { myElements.reserve( nbElems ); } + void Reserve(size_t /*nbElems*/) {} bool Add(const SMDS_MeshElement * theElem); bool Remove(const SMDS_MeshElement * theElem); bool IsEmpty() const { return myElements.empty(); } @@ -62,12 +60,12 @@ class SMDS_EXPORT SMDS_MeshGroup: public SMDS_MeshObject, SMDS_ElementHolder virtual SMDS_ElemIteratorPtr getElements() { return GetElements(); } virtual void tmpClear(); virtual void add( const SMDS_MeshElement* element ) { Add( element ); } - virtual void compact() { myElements.shrink_to_fit(); } + virtual void compact() {} private: - typedef boost::container::flat_set< const SMDS_MeshElement* > TElementSet; - typedef TElementSet::const_iterator TIterator; + typedef std::set< const SMDS_MeshElement* > TElementSet; + typedef TElementSet::const_iterator TIterator; const SMDS_Mesh * myMesh; SMDSAbs_ElementType myType;