From: Andres Noetzli Date: Thu, 10 Aug 2017 23:55:55 +0000 (-0700) Subject: Fix line numbers in options_template X-Git-Tag: cvc5-1.0.0~5684 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0ce756c379c753899c62f88e725bac4a55dea1cd;p=cvc5.git Fix line numbers in options_template --- diff --git a/src/options/options_template.cpp b/src/options/options_template.cpp index 6144b57dc..bc97e6028 100644 --- a/src/options/options_template.cpp +++ b/src/options/options_template.cpp @@ -500,7 +500,7 @@ static struct option cmdlineOptions[] = {${all_modules_long_options} { NULL, no_argument, NULL, '\0' } };/* cmdlineOptions */ -#line 502 "${template}" +#line 504 "${template}" // static void preemptGetopt(int& argc, char**& argv, const char* opt) { @@ -722,7 +722,7 @@ void Options::parseOptionsRecursive(Options* options, switch(c) { ${all_modules_option_handlers} -#line 724 "${template}" +#line 726 "${template}" case ':': // This can be a long or short option, and the way to get at the @@ -800,7 +800,7 @@ std::string Options::suggestCommandLineOptions(const std::string& optionName) th static const char* smtOptions[] = { ${all_modules_smt_options}, -#line 802 "${template}" +#line 804 "${template}" NULL };/* smtOptions[] */ @@ -822,7 +822,7 @@ std::vector< std::vector > Options::getOptions() const throw() { ${all_modules_get_options} -#line 824 "${template}" +#line 826 "${template}" return opts; }