diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-07-08 11:05:02 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-07-08 11:05:02 +0300 |
commit | 8abf7052b1ac75f46992770c919c8fe16f0f54b9 (patch) | |
tree | 721809a9fd4c755fdd6b0ae4a5442e55a2b407e3 /mod/mod-build-task.cxx | |
parent | 1b02cc2a15af121405bc99371dcc1ccb4b69f427 (diff) |
Cleanup handler configuration options inheritance
Diffstat (limited to 'mod/mod-build-task.cxx')
-rw-r--r-- | mod/mod-build-task.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mod/mod-build-task.cxx b/mod/mod-build-task.cxx index 27f884e..ec94e89 100644 --- a/mod/mod-build-task.cxx +++ b/mod/mod-build-task.cxx @@ -60,8 +60,7 @@ init (scanner& s) if (options_->build_config_specified ()) { - database_module::init (static_cast<options::build_db> (*options_), - options_->build_db_retry ()); + database_module::init (*options_, options_->build_db_retry ()); // Check that the database 'build' schema matches the current one. It's // enough to perform the check in just a single module implementation @@ -73,7 +72,7 @@ init (scanner& s) fail << "database 'build' schema differs from the current one (module " << BREP_VERSION_ID << ")"; - build_config_module::init (static_cast<options::build> (*options_)); + build_config_module::init (*options_); } if (options_->root ().empty ()) |