Fix false uninit warning

This commit is contained in:
Wilson Snyder 2019-11-09 18:42:18 -05:00
parent 28cbf39995
commit cf9f466f0a

View File

@ -1283,7 +1283,7 @@ void V3Options::parseOptsFile(FileLine* fl, const string& filename, bool rel) {
ST_IN_DOUBLE_QUOTED_STR};
state st = ST_IN_OPTION;
state last_st;
state last_st = ST_IN_OPTION;
string arg;
for (string::size_type pos = 0;
pos < whole_file.length(); ++pos) {