(svn r26072) -Cleanup: mark some unreachable default cases by NOT_REACHED()

pull/155/head
rubidium 11 years ago
parent 710a35d8fe
commit 157a3d3be4

@ -520,9 +520,7 @@ void ScriptList::Sort(SorterType sorter, bool ascending)
}
break;
default:
this->Sort(SORT_BY_ITEM, false);
return;
default: NOT_REACHED();
}
this->sorter_type = sorter;
this->sort_ascending = ascending;
@ -641,6 +639,7 @@ void ScriptList::RemoveBottom(int32 count)
if (--size == 0) break;
}
}
break;
case SORT_BY_ITEM:
for (ScriptListMap::reverse_iterator iter = this->items.rbegin(); iter != this->items.rend(); iter = this->items.rbegin()) {

@ -680,7 +680,7 @@ CommandCost CmdBuildTunnel(TileIndex start_tile, DoCommandFlag flags, uint32 p1,
switch (transport_type) {
case TRANSPORT_ROAD: cost.AddCost((tiles + 2) * _price[PR_BUILD_ROAD] * 2); break;
case TRANSPORT_RAIL: cost.AddCost((tiles + 2) * RailBuildCost(railtype)); break;
default: break;
default: NOT_REACHED();
}
if (flags & DC_EXEC) {

Loading…
Cancel
Save