1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-19 21:13:05 +01:00

Don't include alloca.h on FreeBSD (#21535)

alloca.h does not exist on FreeBSD.
This commit is contained in:
Piotr Kubaj
2024-03-06 18:02:27 +00:00
committed by GitHub
parent 01248c26a4
commit 96be441533

View File

@@ -15,7 +15,9 @@
#include <stdexcept>
#include <vector>
#ifndef _WIN32
# include <alloca.h>
# ifndef __FreeBSD__
# include <alloca.h>
# endif
# include <unicode/ucnv.h>
# include <unicode/unistr.h>
# include <unicode/utypes.h>