mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-28 01:49:33 -06:00
UICommon/GameFile: Default no-arg constructor and destructor within the cpp file
A GameFile instance contains quite a lot of non-trivial types, so default construction and destruction in the same translation unit.
This commit is contained in:
@ -111,6 +111,8 @@ GameFile::LookupUsingConfigLanguage(const std::map<DiscIO::Language, std::string
|
||||
return Lookup(GetConfigLanguage(), strings);
|
||||
}
|
||||
|
||||
GameFile::GameFile() = default;
|
||||
|
||||
GameFile::GameFile(const std::string& path) : m_file_path(path)
|
||||
{
|
||||
{
|
||||
@ -159,6 +161,8 @@ GameFile::GameFile(const std::string& path) : m_file_path(path)
|
||||
}
|
||||
}
|
||||
|
||||
GameFile::~GameFile() = default;
|
||||
|
||||
bool GameFile::IsValid() const
|
||||
{
|
||||
if (!m_valid)
|
||||
|
Reference in New Issue
Block a user