diff options
Diffstat (limited to 'paludis/util/action_queue.cc')
-rw-r--r-- | paludis/util/action_queue.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/paludis/util/action_queue.cc b/paludis/util/action_queue.cc index 1a30cd940..615c752d7 100644 --- a/paludis/util/action_queue.cc +++ b/paludis/util/action_queue.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 @@ -27,8 +27,6 @@ using namespace paludis; -template class Pimp<ActionQueue>; - namespace paludis { template <> @@ -89,7 +87,7 @@ namespace paludis } ActionQueue::ActionQueue(const unsigned n_threads, const bool nice, const bool limit_size) : - Pimp<ActionQueue>(n_threads, nice, limit_size) + _imp(n_threads, nice, limit_size) { } @@ -135,3 +133,5 @@ ActionQueue::number_of_threads() const return _imp->threads.number_of_threads(); } +template class Pimp<ActionQueue>; + |