From fcbfe21b39526b969fdf9494a5c994f1f933f824 Mon Sep 17 00:00:00 2001 From: David Leverton Date: Sun, 20 Nov 2011 17:41:09 +0000 Subject: Use bool metadata keys --- paludis/repositories/e/e_repository.cc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/paludis/repositories/e/e_repository.cc b/paludis/repositories/e/e_repository.cc index ad926686a..83b132efd 100644 --- a/paludis/repositories/e/e_repository.cc +++ b/paludis/repositories/e/e_repository.cc @@ -249,8 +249,8 @@ namespace paludis std::shared_ptr > profiles_key; std::shared_ptr > cache_key; std::shared_ptr > write_cache_key; - std::shared_ptr > append_repository_name_to_write_cache_key; - std::shared_ptr > ignore_deprecated_profiles; + std::shared_ptr > append_repository_name_to_write_cache_key; + std::shared_ptr > ignore_deprecated_profiles; std::shared_ptr > names_cache_key; std::shared_ptr > distdir_key; std::shared_ptr > eclassdirs_key; @@ -268,7 +268,7 @@ namespace paludis std::shared_ptr > > manifest_hashes_key; std::shared_ptr info_pkgs_key; std::shared_ptr > > info_vars_key; - std::shared_ptr > binary_destination_key; + std::shared_ptr > binary_destination_key; std::shared_ptr > binary_src_uri_prefix_key; std::shared_ptr > binary_distdir_key; std::shared_ptr > > binary_keywords_filter; @@ -309,12 +309,12 @@ namespace paludis mkt_normal, params.cache())), write_cache_key(std::make_shared >("write_cache", "write_cache", mkt_normal, params.write_cache())), - append_repository_name_to_write_cache_key(std::make_shared >( + append_repository_name_to_write_cache_key(std::make_shared >( "append_repository_name_to_write_cache", "append_repository_name_to_write_cache", - mkt_internal, stringify(params.append_repository_name_to_write_cache()))), - ignore_deprecated_profiles(std::make_shared >( + mkt_internal, params.append_repository_name_to_write_cache())), + ignore_deprecated_profiles(std::make_shared >( "ignore_deprecated_profiles", "ignore_deprecated_profiles", - mkt_internal, stringify(params.ignore_deprecated_profiles()))), + mkt_internal, params.ignore_deprecated_profiles())), names_cache_key(std::make_shared >( "names_cache", "names_cache", mkt_normal, params.names_cache())), distdir_key(std::make_shared >( @@ -361,9 +361,9 @@ namespace paludis std::make_shared(layout->info_variables_files()) : std::shared_ptr() ), - binary_destination_key(std::make_shared >( + binary_destination_key(std::make_shared >( "binary_destination", "binary_destination", params.binary_destination() ? mkt_normal : mkt_internal, - stringify(params.binary_destination()))), + params.binary_destination())), binary_src_uri_prefix_key(std::make_shared >( "binary_uri_prefix", "binary_uri_prefix", params.binary_destination() ? mkt_normal : mkt_internal, params.binary_uri_prefix())), -- cgit v1.2.3