(svn r16434) -Cleanup: remove some dead code; primarily stuff that can't be reached like break after returns or break after functions that never return (i.e. NOT_REACHED)

This commit is contained in:
rubidium
2009-05-26 15:46:24 +00:00
parent 68042a6dde
commit d39f442bd0
15 changed files with 30 additions and 36 deletions

View File

@@ -149,7 +149,7 @@ void ConvertOldMultiheadToNew()
SetTrainWagon(u);
SetFreeWagon(u);
break;
default: NOT_REACHED(); break;
default: NOT_REACHED();
}
}
}