Kaydet (Commit) 8068f502 authored tarafından Julien Nabet's avatar Julien Nabet

Fix 'PropEntry::operator=' should return 'PropEntry &'

Change-Id: Id9a772771fe1f1694d1e247c20447461175495ff
üst ac9001b5
......@@ -39,7 +39,7 @@ PropEntry::PropEntry( const PropEntry& rProp ) :
memcpy( (void*)mpBuf, (void*)rProp.mpBuf, mnSize );
};
const PropEntry& PropEntry::operator=(const PropEntry& rPropEntry)
PropEntry& PropEntry::operator=(const PropEntry& rPropEntry)
{
if ( this != &rPropEntry )
{
......
......@@ -113,7 +113,7 @@ struct PropEntry
PropEntry( const PropEntry& rProp );
~PropEntry() { delete[] mpBuf; } ;
const PropEntry& operator=(const PropEntry& rPropEntry);
PropEntry& operator=(const PropEntry& rPropEntry);
};
class PropItem : public SvMemoryStream
......
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