Fixed handling of attribute specifiers in front of declaration

Done with Roberto Raggi
This commit is contained in:
Thorbjørn Lindeijer
2009-02-17 11:23:46 +01:00
parent a26bef5ff4
commit 7774977e5d

View File

@@ -384,8 +384,9 @@ bool CheckSpecifier::visit(TypeofSpecifierAST *ast)
return false; return false;
} }
bool CheckSpecifier::visit(AttributeSpecifierAST *) bool CheckSpecifier::visit(AttributeSpecifierAST *ast)
{ {
accept(ast->next);
return false; return false;
} }