Update ini_settings_interface.cpp (#734)

* Update ini_settings_interface.cpp

Fix compiler error on Windows.
This commit is contained in:
jpchow26 2020-08-10 12:59:58 -04:00 committed by GitHub
parent 5df116b608
commit 2a43b8b182
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,8 @@
#include "common/file_system.h"
#include "common/log.h"
#include <algorithm>
#include <iterator>
Log_SetChannel(INISettingsInterface);
INISettingsInterface::INISettingsInterface(std::string filename) : m_filename(std::move(filename)), m_ini(true, true)