diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-08-30 14:33:14 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-08-30 19:26:41 +0100 |
commit | 2b8b8740f211a649a358fbe2406cae12e9621a77 (patch) | |
tree | c18b9f5c867b7ac2483baa2b5bc9ac61f4b3383a /idl/inc | |
parent | dd5fa4cea7b0c6912754e6887a678a050d4a7610 (diff) |
default assignment operator is fine
Change-Id: I0b63abbfe7d29c35cf7c7dd047527b20ad46c538
Diffstat (limited to 'idl/inc')
-rw-r--r-- | idl/inc/hash.hxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/idl/inc/hash.hxx b/idl/inc/hash.hxx index 6546ca79eb35..458a22d29589 100644 --- a/idl/inc/hash.hxx +++ b/idl/inc/hash.hxx @@ -73,14 +73,6 @@ public: void SetValue( sal_uLong n ) { nValue = n; } sal_uLong GetValue() const { return nValue; } - - SvStringHashEntry & operator = ( const SvStringHashEntry & rRef ) - { SvRefBase::operator=( rRef ); - aName = rRef.aName; - nValue = rRef.nValue; - bHasId = rRef.bHasId; - return *this; - } }; class SvStringHashTable : public SvHashTable |