use the hint when inserting into the std::set

This commit is contained in:
eap 2011-08-10 09:52:47 +00:00
parent 40c13601ee
commit c9acf11dee

View File

@ -131,7 +131,7 @@ void SMDS_MeshGroup::Add(const SMDS_MeshElement * theElem)
return;
}
myElements.insert(theElem);
myElements.insert(myElements.end(), theElem);
++myTic;
}