Fix line numbers in options_template
authorAndres Noetzli <noetzli@stanford.edu>
Thu, 10 Aug 2017 23:55:55 +0000 (16:55 -0700)
committerAndres Noetzli <noetzli@stanford.edu>
Thu, 10 Aug 2017 23:55:55 +0000 (16:55 -0700)
src/options/options_template.cpp

index 6144b57dcbcccc39342f507ea8a3bd8e554f2e11..bc97e60283b39a93b29b66d364d35668904096da 100644 (file)
@@ -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<std::string> > Options::getOptions() const throw() {
 
   ${all_modules_get_options}
 
-#line 824 "${template}"
+#line 826 "${template}"
 
   return opts;
 }