diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-01-11 18:19:07 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-01-11 18:19:07 +0100 |
commit | eb00551f0e990495c6d7533ed193f459cb449665 (patch) | |
tree | 51ba33b836e6d870378e6d614b1387787e3c7e2b /src/configure.cc | |
parent | 2b26fff20c1684bc96eac25cfb24e1230f9ca3ce (diff) |
Rename Settings struct to setings
Diffstat (limited to 'src/configure.cc')
-rw-r--r-- | src/configure.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/configure.cc b/src/configure.cc index 42d9951..40f4d27 100644 --- a/src/configure.cc +++ b/src/configure.cc @@ -172,7 +172,7 @@ public: // helper constant for the visitor template<class> inline constexpr bool always_false_v = false; -int regenerateCache(Settings& settings, +int regenerateCache(ctor::settings& settings, const std::vector<std::string>& args, const std::map<std::string, std::string>& env) { @@ -544,9 +544,9 @@ int regenerateCache(Settings& settings, return 0; } -int configure(const Settings& global_settings, int argc, char* argv[]) +int configure(const ctor::settings& global_settings, int argc, char* argv[]) { - Settings settings{global_settings}; + ctor::settings settings{global_settings}; std::vector<std::string> args; for(int i = 2; i < argc; ++i) // skip command and the first 'configure' arg @@ -590,9 +590,9 @@ int configure(const Settings& global_settings, int argc, char* argv[]) return 0; } -int reconfigure(const Settings& global_settings, int argc, char* argv[]) +int reconfigure(const ctor::settings& global_settings, int argc, char* argv[]) { - Settings settings{global_settings}; + ctor::settings settings{global_settings}; bool no_rerun{false}; |