diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-09-26 21:54:07 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-09-26 21:54:07 +0200 |
commit | bc1fdb79b0a7eba791bf7f5749a8a45ad6a94bff (patch) | |
tree | 32cbc6c06e730efac4ab325fcda5ca48480a8dc6 /idlc/source/parser.y | |
parent | 6dbc69bdf44f1933687b93b4c1838b57804ecc17 (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.y | 2 |
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); |