loplugin:unoany (clang-cl)

Change-Id: Ia5211e7ad27332d4d4cab546d6968e32dfb71523
This commit is contained in:
Stephan Bergmann
2017-03-14 14:43:11 +01:00
parent cd1a9bc6b6
commit 08d8fd9dd8

View File

@@ -114,10 +114,10 @@ Any byteStreamToAny( CDOTransferable::ByteSequence_t& aByteStream, const Type& a
if ( aRequestedDataType == CPPUTYPE_OUSTRING )
{
OUString str = byteStreamToOUString( aByteStream );
aAny = makeAny( str );
aAny <<= str;
}
else
aAny = makeAny( aByteStream );
aAny <<= aByteStream;
return aAny;
}