diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-01-11 18:02:52 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-01-11 18:02:52 +0100 |
commit | 35e368cee986bcf91a472170f97e79f76065366d (patch) | |
tree | c39ab8beb632ec02b74c8f6908c23985216946f4 /src/task.h | |
parent | 10dc0902c22ae931fe51c36ea8fc6d2453819477 (diff) |
Rename OutputSystem::Xyz to output_system::xyz
Diffstat (limited to 'src/task.h')
-rw-r--r-- | src/task.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -61,7 +61,7 @@ public: ctor::target_type targetType() const; ctor::language sourceLanguage() const; - ctor::OutputSystem outputSystem() const; + ctor::output_system outputSystem() const; std::string compiler() const; std::set<std::shared_ptr<Task>> getDependsTasks(); @@ -78,7 +78,7 @@ protected: const ctor::BuildConfiguration& config; ctor::target_type target_type{ctor::target_type::automatic}; ctor::language source_language{ctor::language::automatic}; - ctor::OutputSystem output_system{ctor::OutputSystem::Host}; + ctor::output_system output_system{ctor::output_system::host}; const ctor::Settings& settings; std::string sourceDir; }; |