https://github.com/Warzone2100/warzone2100/pull/3090 From 0b8eed53d99c0491ffbcd903463a3b6eb0081525 Mon Sep 17 00:00:00 2001 From: Sam James Date: Sat, 21 Jan 2023 21:00:02 +0000 Subject: [PATCH] Fix build with GCC 13 (add missing include) GCC 13 (as usual for new compiler releases) shuffles around some internal includes and so is no longer transitively included. Explicitly include for uint32_t. Signed-off-by: Sam James --- a/lib/framework/wzstring.h +++ b/lib/framework/wzstring.h @@ -20,6 +20,7 @@ #ifndef _LIB_FRAMEWORK_WZSTRING_H #define _LIB_FRAMEWORK_WZSTRING_H +#include #include #include #include