diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-01-11 18:06:36 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-01-11 18:06:36 +0100 |
commit | 539c127d6c35e07c995d30c55aa600d248ec12e6 (patch) | |
tree | 50e09fc2e067bafd6cff7ac6d74edac784ca6bcb /src/task_cc.h | |
parent | 35e368cee986bcf91a472170f97e79f76065366d (diff) |
Rename Source class to source
Diffstat (limited to 'src/task_cc.h')
-rw-r--r-- | src/task_cc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/task_cc.h b/src/task_cc.h index cdde84b..ee53f6d 100644 --- a/src/task_cc.h +++ b/src/task_cc.h @@ -16,7 +16,7 @@ class TaskCC public: TaskCC(const ctor::BuildConfiguration& config, const ctor::Settings& settings, - const std::string& sourceDir, const ctor::Source& source); + const std::string& sourceDir, const ctor::source& source); virtual ~TaskCC() = default; int registerDepTasksInner(const std::set<std::shared_ptr<Task>>& tasks) override; @@ -51,5 +51,5 @@ protected: const ctor::BuildConfiguration& config; const ctor::Settings& settings; std::filesystem::path sourceDir; - const ctor::Source& _source; + const ctor::source& _source; }; |