summaryrefslogtreecommitdiff
path: root/idlc/inc/idlc/astsequence.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'idlc/inc/idlc/astsequence.hxx')
-rw-r--r--idlc/inc/idlc/astsequence.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/idlc/inc/idlc/astsequence.hxx b/idlc/inc/idlc/astsequence.hxx
index 1169d8645f9c..1eefbea3f949 100644
--- a/idlc/inc/idlc/astsequence.hxx
+++ b/idlc/inc/idlc/astsequence.hxx
@@ -27,7 +27,7 @@ public:
AstSequence(AstType const * pMemberType, AstScope* pScope)
: AstType(NT_sequence, OString("[]")+pMemberType->getScopedName(), pScope)
, m_pMemberType(pMemberType)
- , m_pRelativName(NULL)
+ , m_pRelativName(nullptr)
{}
virtual ~AstSequence()
{
@@ -39,7 +39,7 @@ public:
{ return m_pMemberType; }
virtual bool isUnsigned() const override
- { return m_pMemberType != 0 && m_pMemberType->isUnsigned(); }
+ { return m_pMemberType != nullptr && m_pMemberType->isUnsigned(); }
virtual const sal_Char* getRelativName() const override;
private: