diff options
author | 2012-04-15 14:51:13 +0100 | |
---|---|---|
committer | 2012-04-15 14:51:13 +0100 | |
commit | 225a16806cca969037491208bc551183d51ff88b (patch) | |
tree | 54ec221549064e3fca50ef1b5854e397f3fff256 | |
parent | abea5c65aaf373efe4522fcac78e571300be0605 (diff) | |
download | paludis-225a16806cca969037491208bc551183d51ff88b.tar.gz paludis-225a16806cca969037491208bc551183d51ff88b.tar.xz |
Add default ctors to work around GCC 4.7 silliness
-rw-r--r-- | paludis/repositories/e/eapi.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/paludis/repositories/e/eapi.cc b/paludis/repositories/e/eapi.cc index b67f7ba00..85effe53e 100644 --- a/paludis/repositories/e/eapi.cc +++ b/paludis/repositories/e/eapi.cc @@ -458,9 +458,16 @@ namespace paludis struct Imp<EAPILabels> { std::map<std::string, std::string> v; + + Imp(); + Imp(const Imp &); }; } +Imp<EAPILabels>::Imp() = default; + +Imp<EAPILabels>::Imp(const Imp &) = default; + EAPILabels::EAPILabels(const std::string & s) : _imp() { |