From: Cedric Venet Date: Tue, 24 Jun 2008 09:09:38 +0000 (+0000) Subject: Test commit: changed the forward declaration of FieldDeclarator from class to struct... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d6d153cbeda12c75073fabfcf27dffd8c710816;p=clang Test commit: changed the forward declaration of FieldDeclarator from class to struct to be coherent with its definition (DeclSpec.h) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@52671 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index 56c72dc452..a8069872df 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -25,7 +25,7 @@ namespace clang { class ObjCDeclSpec; class Declarator; class AttributeList; - class FieldDeclarator; + struct FieldDeclarator; // Parse. class Scope; class Action;