ResolveType for compound literals.

This commit is contained in:
Roberto Raggi
2009-01-13 16:03:46 +01:00
parent 6d260964d5
commit 6966d91c7a
2 changed files with 7 additions and 0 deletions

View File

@@ -425,6 +425,12 @@ bool ResolveExpression::visit(UnaryExpressionAST *ast)
return false;
}
bool ResolveExpression::visit(CompoundLiteralAST *ast)
{
accept(ast->type_id);
return false;
}
bool ResolveExpression::visit(QualifiedNameAST *ast)
{
ResolveClass resolveClass;