diff options
Diffstat (limited to 'paludis/repositories')
5 files changed, 0 insertions, 23 deletions
diff --git a/paludis/repositories/e/e_repository_TEST.cc b/paludis/repositories/e/e_repository_TEST.cc index b450ff58e..963d7f972 100644 --- a/paludis/repositories/e/e_repository_TEST.cc +++ b/paludis/repositories/e/e_repository_TEST.cc @@ -65,12 +65,6 @@ using namespace paludis; namespace { - void cannot_uninstall(const std::shared_ptr<const PackageID> & id, const UninstallActionOptions &) - { - if (id) - throw InternalError(PALUDIS_HERE, "cannot uninstall"); - } - std::shared_ptr<OutputManager> make_standard_output_manager(const Action &) { return std::make_shared<StandardOutputManager>(); diff --git a/paludis/repositories/e/e_repository_TEST_exlibs.cc b/paludis/repositories/e/e_repository_TEST_exlibs.cc index 8fe42a8c0..e90205940 100644 --- a/paludis/repositories/e/e_repository_TEST_exlibs.cc +++ b/paludis/repositories/e/e_repository_TEST_exlibs.cc @@ -81,10 +81,6 @@ namespace return mm->second; } - void dummy_used_this_for_config_protect(const std::string &) - { - } - WantPhase want_all_phases(const std::string &) { return wp_yes; diff --git a/paludis/repositories/e/e_repository_TEST_replacing.cc b/paludis/repositories/e/e_repository_TEST_replacing.cc index 335cb3b68..a3a89b589 100644 --- a/paludis/repositories/e/e_repository_TEST_replacing.cc +++ b/paludis/repositories/e/e_repository_TEST_replacing.cc @@ -76,10 +76,6 @@ namespace return mm->second; } - void dummy_used_this_for_config_protect(const std::string &) - { - } - WantPhase want_all_phases(const std::string &) { return wp_yes; diff --git a/paludis/repositories/e/vdb_repository_TEST.cc b/paludis/repositories/e/vdb_repository_TEST.cc index 2d3640e8d..4c83cc0de 100644 --- a/paludis/repositories/e/vdb_repository_TEST.cc +++ b/paludis/repositories/e/vdb_repository_TEST.cc @@ -83,11 +83,6 @@ namespace return wp_yes; } - bool ignore_nothing(const FSPath &) - { - return false; - } - struct ContentsGatherer { std::string _str; diff --git a/paludis/repositories/unpackaged/unpackaged_repository_TEST.cc b/paludis/repositories/unpackaged/unpackaged_repository_TEST.cc index 782aae909..f2edc5c05 100644 --- a/paludis/repositories/unpackaged/unpackaged_repository_TEST.cc +++ b/paludis/repositories/unpackaged/unpackaged_repository_TEST.cc @@ -56,10 +56,6 @@ namespace return std::make_shared<StandardOutputManager>(); } - void dummy_used_this_for_config_protect(const std::string &) - { - } - WantPhase want_all_phases(const std::string &) { return wp_yes; |