mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-10 06:29:00 +01:00
Merge pull request #6065 from leoetlino/fix
VolumeGC: Add a default constructor for ConvertedGCBanner
This commit is contained in:
commit
ef6ca3c750
@ -277,4 +277,6 @@ VolumeGC::ConvertedGCBanner VolumeGC::ExtractBannerInformation(const GCBanner& b
|
||||
return banner;
|
||||
}
|
||||
|
||||
VolumeGC::ConvertedGCBanner::ConvertedGCBanner() = default;
|
||||
VolumeGC::ConvertedGCBanner::~ConvertedGCBanner() = default;
|
||||
} // namespace
|
||||
|
@ -81,6 +81,9 @@ private:
|
||||
|
||||
struct ConvertedGCBanner
|
||||
{
|
||||
ConvertedGCBanner();
|
||||
~ConvertedGCBanner();
|
||||
|
||||
std::map<Language, std::string> short_names;
|
||||
std::map<Language, std::string> long_names;
|
||||
std::map<Language, std::string> short_makers;
|
||||
|
Loading…
x
Reference in New Issue
Block a user