1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-15 16:32:41 +01:00

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

View File

@@ -129,7 +129,7 @@ public:
}
/** Filter object classes by class name. */
static bool CDECL TagNameFilter(ObjectClassID const *oc, StringFilter &filter)
static bool TagNameFilter(ObjectClassID const *oc, StringFilter &filter)
{
ObjectClass *objclass = ObjectClass::Get(*oc);