1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-11 08:23:43 +00:00

Merge pull request #1142 from aperezdc/gcc13-cstdint

Add missing <cstdint> includes for GCC 13
This commit is contained in:
Thomas Harte 2023-06-01 17:43:18 +01:00 committed by GitHub
commit 81e475f052
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 {