From d5f881be045163503916991edda55e5f07e7c743 Mon Sep 17 00:00:00 2001 From: Jan Date: Sun, 19 Nov 2023 16:42:13 +0100 Subject: [PATCH] Fix more missing headers --- src/ObjCommon/Utils/DistinctMapper.h | 1 + src/Utils/Math/Vector.h | 1 + src/ZoneLoading/Loading/IHashProvider.h | 2 ++ 3 files changed, 4 insertions(+) diff --git a/src/ObjCommon/Utils/DistinctMapper.h b/src/ObjCommon/Utils/DistinctMapper.h index 46d616c4..a5173285 100644 --- a/src/ObjCommon/Utils/DistinctMapper.h +++ b/src/ObjCommon/Utils/DistinctMapper.h @@ -2,6 +2,7 @@ #include "Utils/ClassUtils.h" +#include #include #include diff --git a/src/Utils/Math/Vector.h b/src/Utils/Math/Vector.h index 3657d33d..2a188a1d 100644 --- a/src/Utils/Math/Vector.h +++ b/src/Utils/Math/Vector.h @@ -2,6 +2,7 @@ #include "Utils/ClassUtils.h" #include +#include template class Vector2 { diff --git a/src/ZoneLoading/Loading/IHashProvider.h b/src/ZoneLoading/Loading/IHashProvider.h index 27d8562c..da76becb 100644 --- a/src/ZoneLoading/Loading/IHashProvider.h +++ b/src/ZoneLoading/Loading/IHashProvider.h @@ -1,4 +1,6 @@ #pragma once + +#include #include class IHashProvider