summaryrefslogtreecommitdiff
path: root/src/tasks.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2023-01-11 18:19:07 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2023-01-11 18:19:07 +0100
commiteb00551f0e990495c6d7533ed193f459cb449665 (patch)
tree51ba33b836e6d870378e6d614b1387787e3c7e2b /src/tasks.cc
parent2b26fff20c1684bc96eac25cfb24e1230f9ca3ce (diff)
Rename Settings struct to setings
Diffstat (limited to 'src/tasks.cc')
-rw-r--r--src/tasks.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tasks.cc b/src/tasks.cc
index a1d4c70..65a3dad 100644
--- a/src/tasks.cc
+++ b/src/tasks.cc
@@ -21,7 +21,7 @@
using namespace ctor;
-const std::deque<Target>& getTargets(const Settings& settings,
+const std::deque<Target>& getTargets(const ctor::settings& settings,
bool resolve_externals)
{
static bool initialised{false};
@@ -80,7 +80,7 @@ const std::deque<Target>& getTargets(const Settings& settings,
}
std::set<std::shared_ptr<Task>> taskFactory(const BuildConfiguration& config,
- const Settings& settings,
+ const ctor::settings& settings,
const std::string& sourceDir)
{
std::set<std::shared_ptr<Task>> tasks;
@@ -196,7 +196,7 @@ std::shared_ptr<Task> getNextTask(const std::set<std::shared_ptr<Task>>& allTask
return nullptr;
}
-std::set<std::shared_ptr<Task>> getTasks(const Settings& settings,
+std::set<std::shared_ptr<Task>> getTasks(const ctor::settings& settings,
const std::vector<std::string> names,
bool resolve_externals)
{