diff options
Diffstat (limited to 'paludis/repositories/cran/masks.cc')
-rw-r--r-- | paludis/repositories/cran/masks.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/paludis/repositories/cran/masks.cc b/paludis/repositories/cran/masks.cc index 1612f619a..2afc1123b 100644 --- a/paludis/repositories/cran/masks.cc +++ b/paludis/repositories/cran/masks.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 } BrokenMask::BrokenMask(const char c, const std::string & d, const std::string & e) : - Pimp<BrokenMask>(c, d, e) + _imp(c, d, e) { } |