diff options
Diffstat (limited to 'idlc/inc/astsequence.hxx')
-rw-r--r-- | idlc/inc/astsequence.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/idlc/inc/astsequence.hxx b/idlc/inc/astsequence.hxx index d74f8320f627..e8a2850e23f4 100644 --- a/idlc/inc/astsequence.hxx +++ b/idlc/inc/astsequence.hxx @@ -25,7 +25,7 @@ class AstSequence final : public AstType { public: AstSequence(AstType const* pMemberType, AstScope* pScope) - : AstType(NT_sequence, OStringLiteral("[]") + pMemberType->getScopedName(), pScope) + : AstType(NT_sequence, OString::Concat("[]") + pMemberType->getScopedName(), pScope) , m_pMemberType(pMemberType) { } |