diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-01-10 16:00:36 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-01-11 17:13:24 +0100 |
commit | 1484d74c1dfd24cfe5b6f13f76d58ff395e4d253 (patch) | |
tree | 2f71f2aa6d6dd29eda51924f985de7f9caee78c0 /src/rebuild.h | |
parent | f31661d392c1332ceb0edcbc9fd35f4cb49bb50d (diff) |
Put ctor.h contents in ctor namespace.
Diffstat (limited to 'src/rebuild.h')
-rw-r--r-- | src/rebuild.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rebuild.h b/src/rebuild.h index 284aeb2..6d0f6a8 100644 --- a/src/rebuild.h +++ b/src/rebuild.h @@ -11,13 +11,13 @@ struct BuildConfigurationEntry { const char* file; - BuildConfigurations (*cb)(const Settings&); + ctor::BuildConfigurations (*cb)(const ctor::Settings&); }; struct ExternalConfigurationEntry { const char* file; - ExternalConfigurations (*cb)(const Settings&); + ctor::ExternalConfigurations (*cb)(const ctor::Settings&); }; extern std::array<BuildConfigurationEntry, 1024> configFiles; @@ -30,5 +30,5 @@ int reg(const char* location); int unreg(const char* location); //! Returns true of recompilation was needed. -bool recompileCheck(const Settings& settings, int argc, char* argv[], +bool recompileCheck(const ctor::Settings& settings, int argc, char* argv[], bool relaunch_allowed = true); |