diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-01-11 18:30:11 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-01-11 18:30:11 +0100 |
commit | f10bfc1bff1dc2792b4905c27dd22c0999162fac (patch) | |
tree | bacd83a6aa721d1427d84ef50493235fbda5b343 /src/task_fn.h | |
parent | eb00551f0e990495c6d7533ed193f459cb449665 (diff) |
Rename BuildConfiguration struct to build_configuration
Diffstat (limited to 'src/task_fn.h')
-rw-r--r-- | src/task_fn.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/task_fn.h b/src/task_fn.h index 2efe050..1bad32c 100644 --- a/src/task_fn.h +++ b/src/task_fn.h @@ -14,7 +14,7 @@ class TaskFn : public Task { public: - TaskFn(const ctor::BuildConfiguration& config, + TaskFn(const ctor::build_configuration& config, const ctor::settings& settings, const std::string& sourceDir, const ctor::source& source); virtual ~TaskFn() = default; @@ -38,7 +38,7 @@ protected: std::filesystem::path sourceFile; std::filesystem::path _targetFile; - const ctor::BuildConfiguration& config; + const ctor::build_configuration& config; const ctor::settings& settings; std::filesystem::path sourceDir; }; |