diff options
Diffstat (limited to 'paludis/repositories/e/e_mask.cc')
-rw-r--r-- | paludis/repositories/e/e_mask.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/paludis/repositories/e/e_mask.cc b/paludis/repositories/e/e_mask.cc index e25c1f3c3..a2f987811 100644 --- a/paludis/repositories/e/e_mask.cc +++ b/paludis/repositories/e/e_mask.cc @@ -1,7 +1,7 @@ /* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* - * Copyright (c) 2007, 2008, 2010 Ciaran McCreesh + * Copyright (c) 2007, 2008, 2010, 2011 Ciaran McCreesh * * This file is part of the Paludis package manager. Paludis is free software; * you can redistribute it and/or modify it under the terms of the GNU General @@ -42,7 +42,7 @@ namespace paludis } EUnacceptedMask::EUnacceptedMask(const char k, const std::string & d, const std::shared_ptr<const MetadataKey> & u) : - Pimp<EUnacceptedMask>(k, d, u) + _imp(k, d, u) { } @@ -87,7 +87,7 @@ namespace paludis } EUnsupportedMask::EUnsupportedMask(const char k, const std::string & d, const std::string & n) : - Pimp<EUnsupportedMask>(k, d, n) + _imp(k, d, n) { } @@ -134,7 +134,7 @@ namespace paludis } ERepositoryMask::ERepositoryMask(const char k, const std::string & d, const std::shared_ptr<const MetadataKey> & m) : - Pimp<ERepositoryMask>(k, d, m) + _imp(k, d, m) { } |