1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-04 13:42:55 +01:00

GCC16 fixes (Missing #include <cstdint>) (#25533)

* ReplayManager.h: Include <cstdint> (GCC16 fix)

Closes: https://github.com/OpenRCT2/OpenRCT2/issues/25522

* Crypt.h: Include <cstdint> (GCC16 fix)

* Zip.h: Include <cstdint> (GCC16 fix)

* NetworkKey.h: Include <cstdint> (GCC16 fix)

* AudioMixer.h: Include <cstdint> (GCC16 fix)

* NetworkServerAdvertiser.h: Include <cstdint> (GCC16 fix)
This commit is contained in:
Conrad Kostecki
2025-11-16 23:04:10 +01:00
committed by GitHub
parent 6a5dd316a1
commit b72b82445e
6 changed files with 6 additions and 0 deletions

View File

@@ -9,6 +9,7 @@
#pragma once
#include <cstdint>
#include <memory>
#include <set>
#include <string>

View File

@@ -9,6 +9,7 @@
#pragma once
#include <cstdint>
#include <memory>
namespace OpenRCT2::Audio

View File

@@ -10,6 +10,7 @@
#pragma once
#include <array>
#include <cstdint>
#include <memory>
#include <string>
#include <string_view>

View File

@@ -9,6 +9,7 @@
#pragma once
#include <cstdint>
#include <istream>
#include <memory>
#include <optional>

View File

@@ -11,6 +11,7 @@
#ifndef DISABLE_NETWORK
#include <cstdint>
#include <memory>
#include <string>
#include <vector>

View File

@@ -9,6 +9,7 @@
#pragma once
#include <cstdint>
#include <memory>
namespace OpenRCT2::Network