summaryrefslogtreecommitdiff
path: root/idlc/inc/astsequence.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'idlc/inc/astsequence.hxx')
-rw-r--r--idlc/inc/astsequence.hxx7
1 files changed, 1 insertions, 6 deletions
diff --git a/idlc/inc/astsequence.hxx b/idlc/inc/astsequence.hxx
index 20dac9b4fdc0..1a7a2073f763 100644
--- a/idlc/inc/astsequence.hxx
+++ b/idlc/inc/astsequence.hxx
@@ -29,11 +29,6 @@ public:
, m_pMemberType(pMemberType)
, m_pRelativName(nullptr)
{}
- virtual ~AstSequence() override
- {
- if ( m_pRelativName )
- delete m_pRelativName;
- }
AstType const * getMemberType() const
{ return m_pMemberType; }
@@ -44,7 +39,7 @@ public:
virtual const sal_Char* getRelativName() const override;
private:
AstType const * m_pMemberType;
- mutable OString* m_pRelativName;
+ mutable std::unique_ptr<OString> m_pRelativName;
};
#endif // INCLUDED_IDLC_INC_ASTSEQUENCE_HXX