@@ -65,24 +65,24 @@ Author: Daniel Kroening, kroening@kroening.com
6565
6666#include " xml_interface.h"
6767
68- cbmc_parse_optionst::cbmc_parse_optionst (int argc, const char **argv):
69- parse_options_baset(CBMC_OPTIONS, argc, argv),
70- xml_interfacet(cmdline),
71- messaget(ui_message_handler),
72- ui_message_handler(cmdline, " CBMC " CBMC_VERSION),
73- path_strategy_chooser()
68+ cbmc_parse_optionst::cbmc_parse_optionst (int argc, const char **argv)
69+ : parse_options_baset(CBMC_OPTIONS, argc, argv),
70+ xml_interfacet(cmdline),
71+ messaget(ui_message_handler),
72+ ui_message_handler(cmdline, std::string( " CBMC " ) + CBMC_VERSION),
73+ path_strategy_chooser()
7474{
7575}
7676
7777::cbmc_parse_optionst::cbmc_parse_optionst (
7878 int argc,
7979 const char **argv,
80- const std::string &extra_options):
81- parse_options_baset(CBMC_OPTIONS+ extra_options, argc, argv),
82- xml_interfacet(cmdline),
83- messaget(ui_message_handler),
84- ui_message_handler(cmdline, " CBMC " CBMC_VERSION),
85- path_strategy_chooser()
80+ const std::string &extra_options)
81+ : parse_options_baset(CBMC_OPTIONS + extra_options, argc, argv),
82+ xml_interfacet(cmdline),
83+ messaget(ui_message_handler),
84+ ui_message_handler(cmdline, std::string( " CBMC " ) + CBMC_VERSION),
85+ path_strategy_chooser()
8686{
8787}
8888
@@ -436,9 +436,8 @@ int cbmc_parse_optionst::doit()
436436 //
437437 // Print a banner
438438 //
439- status () << " CBMC version " CBMC_VERSION " "
440- << sizeof (void *)*8 << " -bit "
441- << config.this_architecture () << " "
439+ status () << " CBMC version " << CBMC_VERSION << " " << sizeof (void *) * 8
440+ << " -bit " << config.this_architecture () << " "
442441 << config.this_operating_system () << eom;
443442
444443 //
0 commit comments