From fb0b446e133375a340786551bf2a5a2f2bcce99c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Capelle?= Date: Sun, 8 May 2022 14:03:03 +0200 Subject: [PATCH] Remove unused functions from boost task. --- src/tasks/boost.cpp | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/src/tasks/boost.cpp b/src/tasks/boost.cpp index fe28db9..ce67cb8 100644 --- a/src/tasks/boost.cpp +++ b/src/tasks/boost.cpp @@ -7,22 +7,6 @@ namespace mob::tasks namespace { -std::string python_version_for_jam() -{ - const auto v = python::parsed_version(); - - // 3.8 - return v.major + "." + v.minor; -} - -std::string boost_version_no_patch_underscores() -{ - const auto v = boost::parsed_version(); - - // 1_72 - return v.major + "_" + v.minor; -} - std::string boost_version_no_tags() { const auto v = boost::parsed_version(); @@ -73,12 +57,6 @@ std::string address_model_for_arch(arch a) } } - -std::string source_download_filename() -{ - return boost_version_all_underscores() + ".zip"; -} - fs::path config_jam_file() { return boost::source_path() / "user-config-64.jam";