summaryrefslogtreecommitdiff
path: root/src/task_fn.h
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/task_fn.h
parent2b26fff20c1684bc96eac25cfb24e1230f9ca3ce (diff)
Rename Settings struct to setings
Diffstat (limited to 'src/task_fn.h')
-rw-r--r--src/task_fn.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/task_fn.h b/src/task_fn.h
index 565836b..2efe050 100644
--- a/src/task_fn.h
+++ b/src/task_fn.h
@@ -15,7 +15,7 @@ class TaskFn
{
public:
TaskFn(const ctor::BuildConfiguration& config,
- const ctor::Settings& settings,
+ const ctor::settings& settings,
const std::string& sourceDir, const ctor::source& source);
virtual ~TaskFn() = default;
@@ -39,6 +39,6 @@ protected:
std::filesystem::path _targetFile;
const ctor::BuildConfiguration& config;
- const ctor::Settings& settings;
+ const ctor::settings& settings;
std::filesystem::path sourceDir;
};