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

loplugin:cstylecast: deal with those that are (technically) const_cast

Change-Id: I4373b1698ed81cd84dc5f319fde003f9b8c301fb
üst 1fb55375
...@@ -1479,7 +1479,7 @@ void DrawingML::GetUUID( OStringBuffer& rBuffer ) ...@@ -1479,7 +1479,7 @@ void DrawingML::GetUUID( OStringBuffer& rBuffer )
{ {
Sequence< sal_uInt8 > aSeq( 16 ); Sequence< sal_uInt8 > aSeq( 16 );
static const char cDigits[17] = "0123456789ABCDEF"; static const char cDigits[17] = "0123456789ABCDEF";
rtl_createUuid( (sal_uInt8*)aSeq.getArray(), 0, true ); rtl_createUuid( aSeq.getArray(), 0, true );
int i; int i;
rBuffer.append( '{' ); rBuffer.append( '{' );
......
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