diff options
| author | Connor McLaughlin <stenzek@gmail.com> | 2019-06-08 20:01:15 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-08 20:01:15 +1000 |
| commit | 67a9fc6784209f958dfc5bd7711d101cec0ba2c6 (patch) | |
| tree | a4902eadadd3ed710da4ae582812ef062c07b63d /Source/Core/Common/IniFile.cpp | |
| parent | b7fba95cdfe10112d5ba92bee2c4c655ff7afa13 (diff) | |
| parent | c0c0e412e05916c3f45d122b54347bae3225ccc8 (diff) | |
Merge pull request #8163 from lioncash/config
Core/ConfigManager: Use forward declarations where applicable
Diffstat (limited to 'Source/Core/Common/IniFile.cpp')
| -rw-r--r-- | Source/Core/Common/IniFile.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
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<std::string>* 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) |
