From 6bc4cc984fbfe4abdbf2f59ba86b3d697d062520 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Mon, 22 May 2017 02:02:04 +0200 Subject: [PATCH 1/4] TitleDatabase: Fix header includes Remove unneeded includes, and add missing includes. --- Source/Core/Core/TitleDatabase.cpp | 2 ++ Source/Core/Core/TitleDatabase.h | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/TitleDatabase.cpp b/Source/Core/Core/TitleDatabase.cpp index f4cc2f255e..701be82e3a 100644 --- a/Source/Core/Core/TitleDatabase.cpp +++ b/Source/Core/Core/TitleDatabase.cpp @@ -2,8 +2,10 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#include #include #include +#include #include "Core/TitleDatabase.h" diff --git a/Source/Core/Core/TitleDatabase.h b/Source/Core/Core/TitleDatabase.h index 23871bdf6a..6b6c53fd9d 100644 --- a/Source/Core/Core/TitleDatabase.h +++ b/Source/Core/Core/TitleDatabase.h @@ -7,8 +7,6 @@ #include #include -#include "Common/CommonTypes.h" - namespace Core { // Reader for title database files. From 7bdf3d7ea754c60a5b92f1e68259b0064188e145 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Mon, 22 May 2017 02:05:20 +0200 Subject: [PATCH 2/4] ESFormats: Fix header includes --- Source/Core/Core/IOS/ES/Formats.cpp | 1 + Source/Core/Core/IOS/ES/Formats.h | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Source/Core/Core/IOS/ES/Formats.cpp b/Source/Core/Core/IOS/ES/Formats.cpp index 039dc7b6e3..c75d7c8e14 100644 --- a/Source/Core/Core/IOS/ES/Formats.cpp +++ b/Source/Core/Core/IOS/ES/Formats.cpp @@ -21,6 +21,7 @@ #include "Common/StringUtil.h" #include "Common/Swap.h" #include "Core/IOS/Device.h" +#include "Core/IOS/IOS.h" #include "Core/IOS/IOSC.h" namespace IOS diff --git a/Source/Core/Core/IOS/ES/Formats.h b/Source/Core/Core/IOS/ES/Formats.h index 182013558c..4d8720a80f 100644 --- a/Source/Core/Core/IOS/ES/Formats.h +++ b/Source/Core/Core/IOS/ES/Formats.h @@ -8,14 +8,17 @@ #pragma once #include +#include +#include #include #include -#include "Common/ChunkFile.h" #include "Common/CommonTypes.h" #include "Common/NandPaths.h" #include "DiscIO/Enums.h" +class PointerWrap; + namespace IOS { namespace ES From 531378e8e6a81019055056bed57ed505f27f0d28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Mon, 22 May 2017 02:06:12 +0200 Subject: [PATCH 3/4] IOSC: Fix header includes --- Source/Core/Core/IOS/IOSC.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/IOS/IOSC.h b/Source/Core/Core/IOS/IOSC.h index 7b3bc2d86f..773fba36c4 100644 --- a/Source/Core/Core/IOS/IOSC.h +++ b/Source/Core/Core/IOS/IOSC.h @@ -7,7 +7,7 @@ #pragma once #include -#include +#include #include #include "Common/CommonTypes.h" From cf0c4455cd133d24d06105694806d3cb897d2abe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Mon, 22 May 2017 10:39:36 +0200 Subject: [PATCH 4/4] Fix indirect includes --- Source/Android/jni/MainAndroid.cpp | 1 + Source/Core/DiscIO/FileSystemGCWii.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index a1a21f0b36..157ce8c123 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -23,6 +23,7 @@ #include "Common/FileUtil.h" #include "Common/GL/GLInterfaceBase.h" #include "Common/Logging/LogManager.h" +#include "Common/MsgHandler.h" #include "Core/BootManager.h" #include "Core/ConfigManager.h" diff --git a/Source/Core/DiscIO/FileSystemGCWii.cpp b/Source/Core/DiscIO/FileSystemGCWii.cpp index c3b9df3119..fc598f851b 100644 --- a/Source/Core/DiscIO/FileSystemGCWii.cpp +++ b/Source/Core/DiscIO/FileSystemGCWii.cpp @@ -9,6 +9,7 @@ #include #include +#include "Common/CommonFuncs.h" #include "Common/CommonTypes.h" #include "Common/FileUtil.h" #include "Common/Logging/Log.h"