From 0599b03d8bf37928520ef80007a5223db2a237d1 Mon Sep 17 00:00:00 2001 From: Artyom Bystrov Date: Tue, 4 Jul 2023 11:56:26 +0300 Subject: [PATCH] Fix build on GCC13 --- src/deprecation.hpp | 2 +- src/serialization/base64.hpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/deprecation.hpp b/src/deprecation.hpp index 33736df1b22..1f616a54fb2 100644 --- a/src/deprecation.hpp +++ b/src/deprecation.hpp @@ -13,7 +13,7 @@ */ #pragma once - +#include #include /** See https://wiki.wesnoth.org/CompatibilityStandards for more info. */ diff --git a/src/serialization/base64.hpp b/src/serialization/base64.hpp index dbb3b3d3265..2552604e137 100644 --- a/src/serialization/base64.hpp +++ b/src/serialization/base64.hpp @@ -17,6 +17,7 @@ #include #include +#include namespace utils { -- 2.33.8