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

loplugin:implicitboolconversion clean-up

Change-Id: Ib7138c40a7f78adae2c362019bc9e20900391ebf
üst b6df255f
......@@ -59,7 +59,7 @@ static bool ReadRangeSvIdl( SvStringHashEntry * pName, SvTokenStream & rInStm,
SvStream& WriteSvBOOL(SvStream & rStm, const SvBOOL & rb )
{
sal_uInt8 n = rb.nVal;
sal_uInt8 n = int(rb.nVal);
if( rb.bSet )
n |= 0x02;
rStm.WriteUChar( n );
......
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