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

loplugin:cstylecast

Change-Id: I17fb91376839bd036be27546118dfdb794bf067a
üst 0183c174
...@@ -34,7 +34,7 @@ typedef sal_uInt8 BitmapChecksumOctetArray[BITMAP_CHECKSUM_SIZE]; ...@@ -34,7 +34,7 @@ typedef sal_uInt8 BitmapChecksumOctetArray[BITMAP_CHECKSUM_SIZE];
template< sal_uInt8 N = 0 > template< sal_uInt8 N = 0 >
inline void BCToBCOA( BitmapChecksum n, BitmapChecksumOctetArray p ) inline void BCToBCOA( BitmapChecksum n, BitmapChecksumOctetArray p )
{ {
p[N] = (sal_uInt8)(n >> ( 8 * N )); p[N] = static_cast<sal_uInt8>(n >> ( 8 * N ));
return BCToBCOA< N + 1 >( n, p ); return BCToBCOA< N + 1 >( n, p );
} }
......
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