summaryrefslogtreecommitdiff
path: root/src/options
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
parent64d707c3a97a8bbc46d4f3cd07e3a4d3908130b1 (diff)
fix #line number warnings (sorry!)
Diffstat (limited to 'src/options')
-rw-r--r--src/options/base_options_template.cpp4
-rw-r--r--src/options/base_options_template.h10
-rw-r--r--src/options/options_holder_template.h4
-rw-r--r--src/options/options_template.cpp16
4 files changed, 17 insertions, 17 deletions
diff --git a/src/options/base_options_template.cpp b/src/options/base_options_template.cpp
index e357af1c6..398dbf987 100644
--- a/src/options/base_options_template.cpp
+++ b/src/options/base_options_template.cpp
@@ -20,13 +20,13 @@ namespace CVC4 {
${module_accessors}
-#line 26 "${template}"
+#line 24 "${template}"
namespace options {
${module_global_definitions}
-#line 32 "${template}"
+#line 30 "${template}"
}/* CVC4::options namespace */
diff --git a/src/options/base_options_template.h b/src/options/base_options_template.h
index b137e485e..527cbc8a2 100644
--- a/src/options/base_options_template.h
+++ b/src/options/base_options_template.h
@@ -22,11 +22,11 @@
#include "options/options.h"
${module_includes}
-#line 28 "${template}"
+#line 26 "${template}"
${module_optionholder_spec}
-#line 32 "${template}"
+#line 30 "${template}"
namespace CVC4 {
@@ -34,19 +34,19 @@ namespace options {
${module_decls}
-#line 40 "${template}"
+#line 38 "${template}"
}/* CVC4::options namespace */
${module_specializations}
-#line 46 "${template}"
+#line 44 "${template}"
namespace options {
${module_inlines}
-#line 52 "${template}"
+#line 50 "${template}"
}/* CVC4::options namespace */
diff --git a/src/options/options_holder_template.h b/src/options/options_holder_template.h
index ef0b4efdc..cd972e823 100644
--- a/src/options/options_holder_template.h
+++ b/src/options/options_holder_template.h
@@ -21,7 +21,7 @@
${include_all_option_headers}
-#line 27 "${template}"
+#line 25 "${template}"
namespace CVC4 {
namespace options {
@@ -30,7 +30,7 @@ struct OptionsHolder {
OptionsHolder();
${all_modules_contributions}
-#line 36 "${template}"
+#line 34 "${template}"
};/* struct OptionsHolder */
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