Merge pull request #5468 from leoetlino/headers

Fix some header includes
This commit is contained in:
Mat M 2017-05-22 21:22:04 -04:00 committed by GitHub
commit 4bfd464b0c
7 changed files with 10 additions and 4 deletions

View file

@ -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"

View file

@ -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

View file

@ -8,14 +8,17 @@
#pragma once
#include <array>
#include <cstddef>
#include <map>
#include <string>
#include <vector>
#include "Common/ChunkFile.h"
#include "Common/CommonTypes.h"
#include "Common/NandPaths.h"
#include "DiscIO/Enums.h"
class PointerWrap;
namespace IOS
{
namespace ES

View file

@ -7,7 +7,7 @@
#pragma once
#include <array>
#include <map>
#include <cstddef>
#include <vector>
#include "Common/CommonTypes.h"

View file

@ -2,8 +2,10 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
#include <cstddef>
#include <fstream>
#include <functional>
#include <utility>
#include "Core/TitleDatabase.h"

View file

@ -7,8 +7,6 @@
#include <string>
#include <unordered_map>
#include "Common/CommonTypes.h"
namespace Core
{
// Reader for title database files.

View file

@ -9,6 +9,7 @@
#include <string>
#include <vector>
#include "Common/CommonFuncs.h"
#include "Common/CommonTypes.h"
#include "Common/FileUtil.h"
#include "Common/Logging/Log.h"