diff options
Diffstat (limited to 'idlc/inc')
-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 229b17dbd2f7..2d65edbaba6c 100644 --- a/idlc/inc/astsequence.hxx +++ b/idlc/inc/astsequence.hxx @@ -25,7 +25,7 @@ class AstSequence : public AstType { public: AstSequence(AstType const * pMemberType, AstScope* pScope) - : AstType(NT_sequence, OString("[]")+pMemberType->getScopedName(), pScope) + : AstType(NT_sequence, OStringLiteral("[]")+pMemberType->getScopedName(), pScope) , m_pMemberType(pMemberType) {} |