summaryrefslogtreecommitdiffstats
path: root/idlc/source/parser.y
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-30 14:53:59 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-30 14:55:35 +0100
commit0555447cd09fa2851e51cd63543ebc7db0a72a1a (patch)
tree33aa6a26daa8196af7534de8cbc6adcefa195029 /idlc/source/parser.y
parentmove disabling of LNK4217 (diff)
downloadcore-0555447cd09fa2851e51cd63543ebc7db0a72a1a.tar.gz
core-0555447cd09fa2851e51cd63543ebc7db0a72a1a.zip
FD_complex is unused
...since 8e71d9400bd350d63723c5489ddaadb3d3610baf "Remove UNOIDL 'array' and 'union' vaporware from idlc" Change-Id: Id4cdef900667cdac466a41e47c189e2d25a62065
Diffstat (limited to 'idlc/source/parser.y')
-rw-r--r--idlc/source/parser.y12
1 files changed, 6 insertions, 6 deletions
diff --git a/idlc/source/parser.y b/idlc/source/parser.y
index c449aa7e6bcc..8296ac46b926 100644
--- a/idlc/source/parser.y
+++ b/idlc/source/parser.y
@@ -733,7 +733,7 @@ attribute :
AstInterface * scope = static_cast< AstInterface * >(
idlc()->scopes()->top());
AstAttribute * attr = new AstAttribute(
- $1, $4->compose($2), $4->getName(), scope);
+ $1, FeDeclarator::compose($2), $4->getName(), scope);
delete $4;
AstInterface::DoubleMemberDeclarations doubleMembers(
scope->checkMemberClashes(attr));
@@ -1053,7 +1053,7 @@ parameter :
*/
if ( pScope && $5 && $8 )
{
- AstType const * pType = $8->compose($5);
+ AstType const * pType = FeDeclarator::compose($5);
if ( pType )
{
if (pScope->isConstructor() && $2 != DIR_IN) {
@@ -1570,7 +1570,7 @@ property :
continue;
}
- pType = pDecl->compose($2);
+ pType = FeDeclarator::compose($2);
if ( !pType )
{
@@ -2047,7 +2047,7 @@ type_declarator :
continue;
}
- pType = pDecl->compose($1);
+ pType = FeDeclarator::compose($1);
if ( !pType )
{
@@ -2122,7 +2122,7 @@ declarator :
checkIdentifier($1);
}
- $$ = new FeDeclarator(*$1, FeDeclarator::FD_simple, NULL);
+ $$ = new FeDeclarator(*$1);
delete $1;
}
;
@@ -2556,7 +2556,7 @@ member :
continue;
}
- pType = pDecl->compose($1);
+ pType = FeDeclarator::compose($1);
if ( !pType )
{