We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f80f5f6 commit 604c0c7Copy full SHA for 604c0c7
OptionParser.cpp
@@ -369,7 +369,6 @@ read_config_file(const string &config_filename,
369
throw runtime_error("cannot open config file: " + config_filename);
370
371
string line;
372
- size_t line_number = 0;
373
while (in) {
374
375
if (!getline(in, line))
@@ -398,12 +397,9 @@ read_config_file(const string &config_filename,
398
397
if (!all_of(begin(option_value), end(option_value), valid_option_char))
399
throw runtime_error("bad option label: " + line);
400
401
- // cerr << option_label << '\t' << option_value << endl;
402
-
403
config_file_options.push_back(line);
404
}
405
in.peek();
406
- ++line_number;
407
408
409
0 commit comments