From 179aef89ac3a99a5254a7f99a2042f31f680e95e Mon Sep 17 00:00:00 2001 From: abd Date: Wed, 3 Dec 2008 09:35:52 +0000 Subject: [PATCH] Fix using of std::set::const_iterator as agrument of set::erase method. It's incompatible with MS compiler. --- src/SMDS/SMDS_MeshGroup.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/SMDS/SMDS_MeshGroup.cxx b/src/SMDS/SMDS_MeshGroup.cxx index 77a5ef285..67c1df426 100644 --- a/src/SMDS/SMDS_MeshGroup.cxx +++ b/src/SMDS/SMDS_MeshGroup.cxx @@ -139,7 +139,8 @@ void SMDS_MeshGroup::Add(const SMDS_MeshElement * theElem) bool SMDS_MeshGroup::Remove(const SMDS_MeshElement * theElem) { - TIterator found = myElements.find(theElem); + std::set::iterator found + = myElements.find(theElem); if ( found != myElements.end() ) { myElements.erase(found); if (myElements.empty()) myType = SMDSAbs_All; -- 2.30.2