Remove unused functions from boost task.

This commit is contained in:
Mikaël Capelle
2022-05-08 14:03:03 +02:00
parent a6f2cbee45
commit fb0b446e13
-22
View File
@@ -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";