1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-17 21:30:14 +00:00

Add missing <cstdint> includes for GCC 13

Sprinkle includes of the <cstdint> header as needed to make the
build succeed with GCC 13, this fixes both with SDL and Qt builds.
This commit is contained in:
Adrian Perez de Castro 2023-05-25 23:06:13 +03:00
parent dd3fc43bd3
commit 1de2631877
No known key found for this signature in database
GPG Key ID: 91C559DBE4C9123B
6 changed files with 6 additions and 0 deletions

View File

@ -9,6 +9,7 @@
#ifndef ActivityObserver_h
#define ActivityObserver_h
#include <cstdint>
#include <string>
namespace Activity {

View File

@ -9,6 +9,7 @@
#ifndef File_hpp
#define File_hpp
#include <cstdint>
#include <string>
#include <vector>

View File

@ -10,6 +10,7 @@
#define ROMCatalogue_hpp
#include <algorithm>
#include <cstdint>
#include <functional>
#include <map>
#include <optional>

View File

@ -9,6 +9,7 @@
#ifndef StringSerialiser_hpp
#define StringSerialiser_hpp
#include <cstdint>
#include <string>
namespace Utility {

View File

@ -13,6 +13,7 @@
#include <cstdarg>
#include <cstring>
#include <cstddef>
#include <cstdint>
#include <string>
#include <typeindex>
#include <typeinfo>

View File

@ -9,6 +9,7 @@
#ifndef Storage_Data_Commodore_hpp
#define Storage_Data_Commodore_hpp
#include <cstdint>
#include <string>
namespace Storage::Data::Commodore {