diff options
Diffstat (limited to 'paludis/resolver/resolvent.cc')
-rw-r--r-- | paludis/resolver/resolvent.cc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/paludis/resolver/resolvent.cc b/paludis/resolver/resolvent.cc index 2a9586d41..1ed9426a6 100644 --- a/paludis/resolver/resolvent.cc +++ b/paludis/resolver/resolvent.cc @@ -93,14 +93,11 @@ Resolvent::Resolvent( Resolvent::Resolvent( const PackageDepSpec & spec, - const bool b, + const SlotNameOrNull & s, const DestinationType t) : destination_type(n::destination_type() = t), package(n::package() = *spec.package_ptr()), - slot(make_named_values<SlotNameOrNull>( - n::name_or_null() = make_null_shared_ptr(), - n::null_means_unknown() = b - )) + slot(s) { } |