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

clang-analyzer-deadcode.DeadStores

...ever since its inception with 2d1f08d6
"CWS-TOOLING: integrate CWS otf01"

Change-Id: I92ec60f5704e632126f3ba98140c520ae5c9e784
üst 1502e969
...@@ -1316,7 +1316,7 @@ bool FtFontInfo::GetFontCodeRanges( CmapResult& rResult ) const ...@@ -1316,7 +1316,7 @@ bool FtFontInfo::GetFontCodeRanges( CmapResult& rResult ) const
if( !nGlyphIndex ) if( !nGlyphIndex )
break; break;
aCodes.push_back( cCode ); // first code inside range aCodes.push_back( cCode ); // first code inside range
sal_uInt32 cNext = cCode; sal_uInt32 cNext;
do cNext = FT_Get_Next_Char( maFaceFT, cCode, &nGlyphIndex ); while( cNext == ++cCode ); do cNext = FT_Get_Next_Char( maFaceFT, cCode, &nGlyphIndex ); while( cNext == ++cCode );
aCodes.push_back( cCode ); // first code outside range aCodes.push_back( cCode ); // first code outside range
cCode = cNext; cCode = cNext;
......
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