summaryrefslogtreecommitdiff
path: root/src/options/options_template.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-10-14 00:08:52 +0000
committerMorgan Deters <mdeters@gmail.com>2012-10-14 00:08:52 +0000
commit5b8b6acd9091e2afec654ebed1332d6755bbb7d9 (patch)
tree2cb0db314d266ec048d2797ab1ae3c9dd6c33f3b /src/options/options_template.cpp
parent64d707c3a97a8bbc46d4f3cd07e3a4d3908130b1 (diff)
fix #line number warnings (sorry!)
Diffstat (limited to 'src/options/options_template.cpp')
-rw-r--r--src/options/options_template.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/options/options_template.cpp b/src/options/options_template.cpp
index 51f1ed1ac..a2ecafa95 100644
--- a/src/options/options_template.cpp
+++ b/src/options/options_template.cpp
@@ -35,7 +35,7 @@
${include_all_option_headers}
-#line 41 "${template}"
+#line 39 "${template}"
#include "util/output.h"
#include "options/options_holder.h"
@@ -44,7 +44,7 @@ ${include_all_option_headers}
${option_handler_includes}
-#line 50 "${template}"
+#line 48 "${template}"
using namespace CVC4;
using namespace CVC4::options;
@@ -181,7 +181,7 @@ void runBoolPredicates(T, std::string option, bool b, SmtEngine* smt) {
${all_custom_handlers}
-#line 187 "${template}"
+#line 220 "${template}"
#ifdef CVC4_DEBUG
# define USE_EARLY_TYPE_CHECKING_BY_DEFAULT true
@@ -211,18 +211,18 @@ options::OptionsHolder::OptionsHolder() : ${all_modules_defaults}
{
}
-#line 217 "${template}"
+#line 215 "${template}"
static const std::string mostCommonOptionsDescription = "\
Most commonly-used CVC4 options:${common_documentation}";
-#line 222 "${template}"
+#line 220 "${template}"
static const std::string optionsDescription = mostCommonOptionsDescription + "\n\
\n\
Additional CVC4 options:${remaining_documentation}";
-#line 228 "${template}"
+#line 226 "${template}"
static const std::string optionsFootnote = "\n\
[*] Each of these options has a --no-OPTIONNAME variant, which reverses the\n\
@@ -293,7 +293,7 @@ static struct option cmdlineOptions[] = {${all_modules_long_options}
{ NULL, no_argument, NULL, '\0' }
};/* cmdlineOptions */
-#line 299 "${template}"
+#line 297 "${template}"
static void preemptGetopt(int& argc, char**& argv, const char* opt) {
const size_t maxoptlen = 128;
@@ -457,7 +457,7 @@ std::vector<std::string> Options::parseOptions(int argc, char* main_argv[]) thro
switch(c) {
${all_modules_option_handlers}
-#line 463 "${template}"
+#line 461 "${template}"
case ':':
// This can be a long or short option, and the way to get at the
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback