diff options
author | rubidium <rubidium@openttd.org> | 2013-11-23 18:13:30 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2013-11-23 18:13:30 +0000 |
commit | be6b64f4e65bfa7b866ad2fbe9518e6f23d75045 (patch) | |
tree | 69dab54dace1dec284f72b1429e382d73b655d75 /src/script | |
parent | 729d64d8d95a1f4fe37ff2f94e4e5aa05fb405f9 (diff) | |
download | openttd-be6b64f4e65bfa7b866ad2fbe9518e6f23d75045.tar.xz |
(svn r26072) -Cleanup: mark some unreachable default cases by NOT_REACHED()
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/api/script_list.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/script/api/script_list.cpp b/src/script/api/script_list.cpp index 353d25d3e..68df5bf95 100644 --- a/src/script/api/script_list.cpp +++ b/src/script/api/script_list.cpp @@ -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()) { |