From 6af7742c35ecdf2831908443ca0e04bf23317a96 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Wed, 11 Jan 2023 19:57:00 +0100 Subject: Rename Configuation struct to configuration and make get/has functions member functions. --- src/task_ar.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/task_ar.cc') diff --git a/src/task_ar.cc b/src/task_ar.cc index 890209e..89bbc40 100644 --- a/src/task_ar.cc +++ b/src/task_ar.cc @@ -97,14 +97,15 @@ int TaskAR::runInner() std::cout << "AR => " << targetFile().string() << std::endl; } + const auto& c = ctor::get_configuration(); std::string tool; switch(outputSystem()) { case ctor::output_system::host: - tool = getConfiguration(cfg::host_ar, "/usr/bin/ar"); + tool = c.get(cfg::host_ar, "/usr/bin/ar"); break; case ctor::output_system::build: - tool = getConfiguration(cfg::build_ar, "/usr/bin/ar"); + tool = c.get(cfg::build_ar, "/usr/bin/ar"); break; } -- cgit v1.2.3