From 583d237b2b24c8bcc31630a4abd47e89a4f47a60 Mon Sep 17 00:00:00 2001 From: ToBul <108437760+ToBul@users.noreply.github.com> Date: Sat, 6 May 2023 19:36:42 +0100 Subject: [PATCH] Fix GCC 13 build. MSYS and probably a few Linux distros are now shipping GCC 13. The new standards and issues are listed here, https://gcc.gnu.org/gcc-13/porting_to.html --- Src/Util/BitCast.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Src/Util/BitCast.h b/Src/Util/BitCast.h index 6cdf602..cb4aee8 100644 --- a/Src/Util/BitCast.h +++ b/Src/Util/BitCast.h @@ -3,6 +3,7 @@ #include #include +#include namespace Util {