diff options
Diffstat (limited to 'paludis/resolver/job_requirements.hh')
-rw-r--r-- | paludis/resolver/job_requirements.hh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/paludis/resolver/job_requirements.hh b/paludis/resolver/job_requirements.hh index 9e47b6ad7..354c601fa 100644 --- a/paludis/resolver/job_requirements.hh +++ b/paludis/resolver/job_requirements.hh @@ -1,7 +1,7 @@ /* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* - * Copyright (c) 2010 Ciaran McCreesh + * Copyright (c) 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 @@ -46,6 +46,11 @@ namespace paludis static const JobRequirement deserialise(Deserialisation & d) PALUDIS_ATTRIBUTE((warn_unused_result)); void serialise(Serialiser &) const; }; + + struct JobRequirementComparator + { + bool operator() (const JobRequirement & a, const JobRequirement & b); + }; } extern template class Sequence<resolver::JobRequirement>; |