From eb00551f0e990495c6d7533ed193f459cb449665 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Wed, 11 Jan 2023 18:19:07 +0100 Subject: Rename Settings struct to setings --- src/build.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/build.h') diff --git a/src/build.h b/src/build.h index 97bcfc6..d74642c 100644 --- a/src/build.h +++ b/src/build.h @@ -11,24 +11,24 @@ #include "tasks.h" namespace ctor { -struct Settings; +struct settings; } // namespace ctor:: //! Dry-run returns number of dirty tasks but otherwise does nothing. -int build(const ctor::Settings& settings, +int build(const ctor::settings& settings, const std::string& name, const std::set>& tasks, const std::set>& all_tasks, bool dryrun = false); //! Dry-run returns number of dirty tasks but otherwise does nothing. -int build(const ctor::Settings& settings, +int build(const ctor::settings& settings, const std::string& name, const std::set>& all_tasks, bool dryrun = false); //! Dry-run returns number of dirty tasks but otherwise does nothing. -int build(const ctor::Settings& settings, +int build(const ctor::settings& settings, const std::string& name, const std::vector& targets, const std::set>& all_tasks, -- cgit v1.2.3