diff options
-rw-r--r-- | idlc/source/parser.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/idlc/source/parser.y b/idlc/source/parser.y index 1e873853b46e..aa8302cac46f 100644 --- a/idlc/source/parser.y +++ b/idlc/source/parser.y @@ -1421,11 +1421,11 @@ literal : } | IDL_TRUE { - $$ = new AstExpression((sal_Int32)1, ET_boolean); + $$ = new AstExpression(sal_Int32(1), ET_boolean); } | IDL_FALSE { - $$ = new AstExpression((sal_Int32)0, ET_boolean); + $$ = new AstExpression(sal_Int32(0), ET_boolean); } ; |