mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00: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:
parent
49ca31467d
commit
8e65869484
2 changed files with 6 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue