diff options
Diffstat (limited to 'paludis/repositories/e/eapi.cc')
-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() { |