aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Parse/Parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/clang/Parse/Parser.h')
-rw-r--r--include/clang/Parse/Parser.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/clang/Parse/Parser.h b/include/clang/Parse/Parser.h
index eb508d7234..561359b2c0 100644
--- a/include/clang/Parse/Parser.h
+++ b/include/clang/Parse/Parser.h
@@ -19,11 +19,12 @@
#include <stack>
namespace clang {
+ class AttributeList;
class DeclSpec;
- class ObjCDeclSpec;
class Declarator;
class FieldDeclarator;
- class AttributeList;
+ class ObjCDeclSpec;
+ class PragmaHandler;
class Scope;
/// Parser - This implements a parser for the C family of languages. After
@@ -56,6 +57,8 @@ class Parser {
/// comparison.
IdentifierInfo *Ident_super;
+ PragmaHandler *PackHandler;
+
public:
Parser(Preprocessor &PP, Action &Actions);
~Parser();