Fix build with GCC13: various standard includes

This commit is contained in:
Andreas Stieger 2023-04-05 00:20:14 +02:00
parent 5c1e66a910
commit 822592c6b1
5 changed files with 6 additions and 0 deletions

View File

@ -8,6 +8,7 @@
#include <map>
#include <string>
#include <vector>
#include <cstdint>
#include "Common/File/Path.h"

View File

@ -5,6 +5,7 @@
#pragma once
#include <string>
#include <cstdint>
// TODO: Replace with thin3d's vendor enum.
enum {

View File

@ -1,5 +1,7 @@
#pragma once
#include <cstdint>
#include "Common/Buffer.h"
namespace net {

View File

@ -19,6 +19,7 @@
#include <string>
#include <vector>
#include <cstdint>
#include "Common/CommonTypes.h"
#include "Common/File/Path.h"

View File

@ -2624,6 +2624,7 @@ VMA_CALL_PRE void VMA_CALL_POST vmaFreeStatsString(
#include <cstring>
#include <utility>
#include <type_traits>
#include <cstdio>
#ifdef _MSC_VER
#include <intrin.h> // For functions like __popcnt, _BitScanForward etc.