From c0c0e412e05916c3f45d122b54347bae3225ccc8 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 7 Jun 2019 18:25:32 -0400 Subject: Core/ConfigManager: Use forward declarations where applicable Avoids dragging in IniFile, EXI device and SI device headers in this header which is quite widely used throughout the codebase. This also uncovered a few cases where indirect inclusions were being relied upon, which this also fixes. --- Source/Core/Common/IniFile.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Source/Core/Common/IniFile.cpp') diff --git a/Source/Core/Common/IniFile.cpp b/Source/Core/Common/IniFile.cpp index d059e3dd1b..65deaa1573 100644 --- a/Source/Core/Common/IniFile.cpp +++ b/Source/Core/Common/IniFile.cpp @@ -121,6 +121,10 @@ bool IniFile::Section::GetLines(std::vector* lines, const bool remo // IniFile +IniFile::IniFile() = default; + +IniFile::~IniFile() = default; + const IniFile::Section* IniFile::GetSection(const std::string& sectionName) const { for (const Section& sect : sections) -- cgit v1.2.3