Codechange: Remove CDECL from filter functions. (#12578)

These functions are not passed to qsort()...
This commit is contained in:
Peter Nelson
2024-04-25 22:13:23 +01:00
committed by GitHub
parent 0075a95278
commit f44d8fa2e4
10 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -538,7 +538,7 @@ const StringID _engine_sort_listing[][12] = {{
}};
/** Filters vehicles by cargo and engine (in case of rail vehicle). */
static bool CDECL CargoAndEngineFilter(const GUIEngineListItem *item, const CargoID cid)
static bool CargoAndEngineFilter(const GUIEngineListItem *item, const CargoID cid)
{
if (cid == CargoFilterCriteria::CF_ANY) {
return true;