diff options
author | Cedric Venet <cedric.venet@laposte.net> | 2008-06-24 09:09:38 +0000 |
---|---|---|
committer | Cedric Venet <cedric.venet@laposte.net> | 2008-06-24 09:09:38 +0000 |
commit | 0d6d153cbeda12c75073fabfcf27dffd8c710816 (patch) | |
tree | 4cc1d186d41bd1236802afd7a53cc5db62800ffa | |
parent | a75a8ea5b72ebdda5f651b57ae2c3b4e84b69253 (diff) |
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
-rw-r--r-- | include/clang/Parse/Action.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |