Skip to content
Snippets Groups Projects
Commit b0b10938 authored by Gigg, Martyn Anthony's avatar Gigg, Martyn Anthony
Browse files

Reinstate lost behaviour and keep gcc happy. Re #1637

parent b7cf6137
No related merge requests found
......@@ -85,7 +85,7 @@ MDGeometryDescription::setPAxis(unsigned int i, const std::string &Tag)
unsigned int ic(0);
std::list<TagIndex>::const_iterator it,old_place,new_place;
std::list<TagIndex>::iterator it,old_place, new_place;
old_place = DimTags.end();
for(it=DimTags.begin();it!=old_place;it++){
if(it->Tag.compare(Tag)==0){
......@@ -103,8 +103,8 @@ MDGeometryDescription::setPAxis(unsigned int i, const std::string &Tag)
throw(std::invalid_argument(" The requested tag does not exist"));
}
if(new_place!=old_place){
// DimTags.insert(new_place,*old_place);
// DimTags.erase(old_place);
DimTags.insert(new_place,*old_place);
DimTags.erase(old_place);
this->sortAxisTags();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment