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-force.cxx | |
parent | 1b02cc2a15af121405bc99371dcc1ccb4b69f427 (diff) |
Cleanup handler configuration options inheritance
Diffstat (limited to 'mod/mod-build-force.cxx')
-rw-r--r-- | mod/mod-build-force.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/mod/mod-build-force.cxx b/mod/mod-build-force.cxx index 2c6ac64..72c5fdf 100644 --- a/mod/mod-build-force.cxx +++ b/mod/mod-build-force.cxx @@ -43,10 +43,8 @@ init (scanner& s) if (options_->build_config_specified ()) { - database_module::init (static_cast<options::build_db> (*options_), - options_->build_db_retry ()); - - build_config_module::init (static_cast<options::build> (*options_)); + database_module::init (*options_, options_->build_db_retry ()); + build_config_module::init (*options_); } } |