summaryrefslogtreecommitdiffstats
path: root/idlc/source/parser.y
diff options
context:
space:
mode:
Diffstat (limited to 'idlc/source/parser.y')
-rw-r--r--idlc/source/parser.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/idlc/source/parser.y b/idlc/source/parser.y
index 054df1e81df7..a2b9c645656b 100644
--- a/idlc/source/parser.y
+++ b/idlc/source/parser.y
@@ -491,7 +491,7 @@ interface_decl :
identifier
{
idlc()->setParseState(PS_InterfaceIDSeen);
- checkIdentifier($3);
+ checkIdentifier($3);
$$ = $3;
}
;
@@ -823,7 +823,7 @@ opt_attrflag :
}
| error ']'
{
- yyerror("unknown property|attribute flag");
+ yyerror("unknown property|attribute flag");
yyerrok;
}
;
@@ -920,7 +920,7 @@ operation :
identifier
{
idlc()->setParseState(PS_OpIDSeen);
- checkIdentifier($3);
+ checkIdentifier($3);
AstInterface * pScope = static_cast< AstInterface * >(
idlc()->scopes()->top());