diff options
author | 2011-01-09 10:23:12 +0000 | |
---|---|---|
committer | 2011-01-09 10:23:12 +0000 | |
commit | 7a2c9e974666881f44406c88189ae546a67ff0b7 (patch) | |
tree | f6846da02bf779a262f58e5042f3fa1bbf7415d3 /paludis/resolver/get_constraints_for_purge_helper.cc | |
parent | 7f7c79fcc67df4fae498ca943e36592d3f7a3ad2 (diff) | |
download | paludis-7a2c9e974666881f44406c88189ae546a67ff0b7.tar.gz paludis-7a2c9e974666881f44406c88189ae546a67ff0b7.tar.xz |
Rework Pimp to avoid ImpPtr ickiness
Fixes: ticket:1070
Diffstat (limited to 'paludis/resolver/get_constraints_for_purge_helper.cc')
-rw-r--r-- | paludis/resolver/get_constraints_for_purge_helper.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paludis/resolver/get_constraints_for_purge_helper.cc b/paludis/resolver/get_constraints_for_purge_helper.cc index 7c51fdedc..1eb80cd60 100644 --- a/paludis/resolver/get_constraints_for_purge_helper.cc +++ b/paludis/resolver/get_constraints_for_purge_helper.cc @@ -56,7 +56,7 @@ namespace paludis } GetConstraintsForPurgeHelper::GetConstraintsForPurgeHelper(const Environment * const e) : - Pimp<GetConstraintsForPurgeHelper>(e) + _imp(e) { } |