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 | 4bcc95de9b6c37590e4422f1d7e47e55378dcadb (patch) | |
tree | fa6ab27b41266bee7d96a3e172011ae15dbf92c1 | |
parent | 3f2ceac565bcd5a90d2c390b49f4b86eed5eec4d (diff) | |
download | bcm5719-llvm-4bcc95de9b6c37590e4422f1d7e47e55378dcadb.tar.gz bcm5719-llvm-4bcc95de9b6c37590e4422f1d7e47e55378dcadb.zip |
Test commit: changed the forward declaration of FieldDeclarator from class to struct to be coherent with its definition (DeclSpec.h)
llvm-svn: 52671
-rw-r--r-- | clang/include/clang/Parse/Action.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Parse/Action.h b/clang/include/clang/Parse/Action.h index 56c72dc4529..a8069872dff 100644 --- a/clang/include/clang/Parse/Action.h +++ b/clang/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; |