summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKshitij Bansal <kshitij@cs.nyu.edu>2014-04-29 19:38:29 -0400
committerKshitij Bansal <kshitij@cs.nyu.edu>2014-04-29 19:41:04 -0400
commit138259870f2eb506ba8f9b57cf9f44db440e6940 (patch)
tree1a8003855c3520db29df162757a0b3ee5e57e3ae /src
parent47139e8b11b0f11289a1b6cca46cd62e0814eaa3 (diff)
fixed couple of more warnings
Diffstat (limited to 'src')
-rw-r--r--src/main/options4
-rw-r--r--src/options/options_template.cpp4
2 files changed, 4 insertions, 4 deletions
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);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback