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
|
@ -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)
|
||||
|
|
|
@ -44,9 +44,9 @@ bool operator!=(const GameBanner& lhs, const GameBanner& rhs);
|
|||
class GameFile final
|
||||
{
|
||||
public:
|
||||
GameFile() = default;
|
||||
GameFile();
|
||||
explicit GameFile(const std::string& path);
|
||||
~GameFile() = default;
|
||||
~GameFile();
|
||||
|
||||
bool IsValid() const;
|
||||
const std::string& GetFilePath() const { return m_file_path; }
|
||||
|
|
Loading…
Reference in New Issue