mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
VolumeGC: Add a default constructor for ConvertedGCBanner
Without this, it fails to build with the following error in g++ 7.2.0: > constructor required before non-static data member has been parsed
This commit is contained in:
@ -277,4 +277,6 @@ VolumeGC::ConvertedGCBanner VolumeGC::ExtractBannerInformation(const GCBanner& b
|
|||||||
return banner;
|
return banner;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
VolumeGC::ConvertedGCBanner::ConvertedGCBanner() = default;
|
||||||
|
VolumeGC::ConvertedGCBanner::~ConvertedGCBanner() = default;
|
||||||
} // namespace
|
} // namespace
|
||||||
|
@ -81,6 +81,9 @@ private:
|
|||||||
|
|
||||||
struct ConvertedGCBanner
|
struct ConvertedGCBanner
|
||||||
{
|
{
|
||||||
|
ConvertedGCBanner();
|
||||||
|
~ConvertedGCBanner();
|
||||||
|
|
||||||
std::map<Language, std::string> short_names;
|
std::map<Language, std::string> short_names;
|
||||||
std::map<Language, std::string> long_names;
|
std::map<Language, std::string> long_names;
|
||||||
std::map<Language, std::string> short_makers;
|
std::map<Language, std::string> short_makers;
|
||||||
|
Reference in New Issue
Block a user