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

clang-analyzer-deadcode.DeadStores

Change-Id: I19650204f707c822f9f16a04e1bd1cd8e85a5c67
üst 593df166
......@@ -202,7 +202,7 @@ int SvRTFParser::_GetNextToken()
if( '\\' == cAnsi &&
'\'' == ( cAnsi = GetNextChar() ))
// read on HexValue
cAnsi = GetHexValue();
GetHexValue();
nNextCh = GetNextChar();
}
ScanText();
......@@ -426,7 +426,7 @@ void SvRTFParser::ScanText( const sal_Unicode cBreak )
if( '\\' == cAnsi &&
'\'' == ( cAnsi = GetNextChar() ))
// HexValue ueberlesen
cAnsi = GetHexValue();
GetHexValue();
nNextCh = GetNextChar();
}
bNextCh = false;
......
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