From: Kshitij Bansal Date: Tue, 29 Apr 2014 23:38:29 +0000 (-0400) Subject: fixed couple of more warnings X-Git-Tag: cvc5-1.0.0~6947 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=138259870f2eb506ba8f9b57cf9f44db440e6940;p=cvc5.git fixed couple of more warnings --- diff --git a/src/main/options b/src/main/options index d84482836..8733011f7 100644 --- a/src/main/options +++ b/src/main/options @@ -42,8 +42,8 @@ option incrementalParallel --incremental-parallel bool :default false :link --in undocumented-option interactivePrompt /--no-interactive-prompt bool :default true turn off interactive prompting while in interactive mode -# error behaviors -option continuedExecution --continued-execution/--immediate-exit bool :default false :link "--interactive --no-interactive-prompt"/ +# error behaviors (--immediate-exit is default in cases we support, thus no options) +option continuedExecution --continued-execution/ bool :default false :link "--interactive --no-interactive-prompt"/ continue executing commands, even on error option segvSpin --segv-spin bool :default false diff --git a/src/options/options_template.cpp b/src/options/options_template.cpp index fc8b31d49..de44d717e 100644 --- a/src/options/options_template.cpp +++ b/src/options/options_template.cpp @@ -573,7 +573,7 @@ std::string Options::suggestCommandLineOptions(const std::string& optionName) th static const char* smtOptions[] = { ${all_modules_smt_options}, -#line 589 "${template}" +#line 577 "${template}" NULL };/* smtOptions[] */ @@ -595,7 +595,7 @@ SExpr Options::getOptions() const throw() { ${all_modules_get_options} -#line 611 "${template}" +#line 599 "${template}" return SExpr(opts); }