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…
Reference in New Issue