summaryrefslogtreecommitdiff
path: root/idlc/source/parser.y
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-09-26 21:54:07 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-09-26 21:54:07 +0200
commitbc1fdb79b0a7eba791bf7f5749a8a45ad6a94bff (patch)
tree32cbc6c06e730efac4ab325fcda5ca48480a8dc6 /idlc/source/parser.y
parent6dbc69bdf44f1933687b93b4c1838b57804ecc17 (diff)
The only EvalKind actually used is EK_const
Change-Id: Ide451d1e287eeb8666b9ddcce312b9a753761c50
Diffstat (limited to 'idlc/source/parser.y')
-rw-r--r--idlc/source/parser.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/idlc/source/parser.y b/idlc/source/parser.y
index 52bcdf862b7f..c449aa7e6bcc 100644
--- a/idlc/source/parser.y
+++ b/idlc/source/parser.y
@@ -2719,7 +2719,7 @@ enumerator :
if ( $3 && pScope && pScope->getScopeNodeType() == NT_enum)
{
- $3->evaluate(EK_const);
+ $3->evaluate();
if ( $3->coerce(ET_long) )
{
pEnum = static_cast<AstEnum*>(pScope);