Skip to content
Permalink
Browse files
Merge pull request #6065 from leoetlino/fix
VolumeGC: Add a default constructor for ConvertedGCBanner
  • Loading branch information
leoetlino committed Sep 15, 2017
2 parents 7cb8d66 + 6f1b156 commit ef6ca3c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
@@ -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 @@ class VolumeGC : public Volume

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;

0 comments on commit ef6ca3c

Please sign in to comment.