Skip to content

Commit

Permalink
Fix #line numbering.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdeters committed Jan 13, 2015
1 parent 1185848 commit ba1ae20
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/options/options_template.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -238,18 +238,18 @@ options::OptionsHolder::OptionsHolder() : ${all_modules_defaults}
{
}

#line 241 "${template}"
#line 242 "${template}"

static const std::string mostCommonOptionsDescription = "\
Most commonly-used CVC4 options:${common_documentation}";

#line 246 "${template}"
#line 247 "${template}"

static const std::string optionsDescription = mostCommonOptionsDescription + "\n\
\n\
Additional CVC4 options:${remaining_documentation}";

#line 252 "${template}"
#line 253 "${template}"

static const std::string optionsFootnote = "\n\
[*] Each of these options has a --no-OPTIONNAME variant, which reverses the\n\
Expand Down Expand Up @@ -326,7 +326,7 @@ static struct option cmdlineOptions[] = {${all_modules_long_options}
{ NULL, no_argument, NULL, '\0' }
};/* cmdlineOptions */

#line 329 "${template}"
#line 330 "${template}"

static void preemptGetopt(int& argc, char**& argv, const char* opt) {
const size_t maxoptlen = 128;
Expand Down Expand Up @@ -519,7 +519,7 @@ std::vector<std::string> Options::parseOptions(int argc, char* main_argv[]) thro
switch(c) {
${all_modules_option_handlers}

#line 522 "${template}"
#line 523 "${template}"

case ':':
// This can be a long or short option, and the way to get at the
Expand Down Expand Up @@ -588,7 +588,7 @@ std::string Options::suggestCommandLineOptions(const std::string& optionName) th

static const char* smtOptions[] = {
${all_modules_smt_options},
#line 591 "${template}"
#line 592 "${template}"
NULL
};/* smtOptions[] */

Expand All @@ -610,7 +610,7 @@ SExpr Options::getOptions() const throw() {

${all_modules_get_options}

#line 613 "${template}"
#line 614 "${template}"

return SExpr(opts);
}
Expand Down

0 comments on commit ba1ae20

Please sign in to comment.