Fix building with GCC 13.

Fixes the following issue:
base64.hpp:23:49: error: 'uint8_t' was not declared in this scope

and:
deprecation.hpp:20:22: error: found ':' in nested-name-specifier, expected '::'
This commit is contained in:
Martin Liska 2022-05-23 13:44:39 +02:00 committed by Steve Cotton
parent 7d2ee4ef72
commit 5fa07ea15c
2 changed files with 2 additions and 0 deletions

View file

@ -14,6 +14,7 @@
#pragma once #pragma once
#include <cstdint>
#include <string> #include <string>
/** See https://wiki.wesnoth.org/CompatibilityStandards for more info. */ /** See https://wiki.wesnoth.org/CompatibilityStandards for more info. */

View file

@ -15,6 +15,7 @@
#pragma once #pragma once
#include <cstdint>
#include <string_view> #include <string_view>
#include <vector> #include <vector>