Kaydet (Commit) 65da01fa authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Wshadow

Change-Id: I8299079b46be4ccb7070f5497d089166a953c939
üst 032944e0
......@@ -3701,10 +3701,10 @@ bool parse(OUString const & uri, SourceProviderScannerData * data) {
// Checking errno for the specific EINVAL, ENOMEM documented for
// yylex_init_extra would not work as those values are not defined
// by the C++ Standard:
int e = errno;
int e2 = errno;
throw FileFormatException(
uri,
"yylex_init_extra failed with errno " + OUString::number(e));
"yylex_init_extra failed with errno " + OUString::number(e2));
}
int e2 = yyparse(yyscanner);
yylex_destroy(yyscanner);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment