diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-08-30 14:26:19 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-08-30 19:26:41 +0100 |
commit | a7b18aaa46c225d3546ad52aab0c460092c8edb0 (patch) | |
tree | bcb71a8b13fc0a6d8ea581556a0bd8f21c0f1b3d /idl/inc | |
parent | 2b8b8740f211a649a358fbe2406cae12e9621a77 (diff) |
no point in these dtors being virtual
nothing inherits from these classes
Change-Id: Ic887ac8a046b8697e310e19b6e7fdf9efae8f074
Diffstat (limited to 'idl/inc')
-rw-r--r-- | idl/inc/hash.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/idl/inc/hash.hxx b/idl/inc/hash.hxx index 458a22d29589..c0dd517190ce 100644 --- a/idl/inc/hash.hxx +++ b/idl/inc/hash.hxx @@ -60,13 +60,13 @@ public: , bHasId(false) { } + SvStringHashEntry( const OString& rName ) : aName(rName) , nValue(0) , bHasId(true) { } - virtual ~SvStringHashEntry(); const OString& GetName() const { return aName; } bool HasId() const { return bHasId; } |