From 225a16806cca969037491208bc551183d51ff88b Mon Sep 17 00:00:00 2001 From: Ciaran McCreesh Date: Sun, 15 Apr 2012 14:51:13 +0100 Subject: Add default ctors to work around GCC 4.7 silliness --- paludis/repositories/e/eapi.cc | 7 +++++++ 1 file changed, 7 insertions(+) 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 { std::map v; + + Imp(); + Imp(const Imp &); }; } +Imp::Imp() = default; + +Imp::Imp(const Imp &) = default; + EAPILabels::EAPILabels(const std::string & s) : _imp() { -- cgit v1.2.3