summaryrefslogtreecommitdiff
path: root/src/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser.h b/src/parser.h
index 62254689..7e87a46f 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -24,7 +24,7 @@ struct BaseParser
RegionSetVect regionStack;
NamespaceVect namespaceStack;
- ContextStack structStack;
+ StructStack structStack;
ObjectDef *curLocalFrame;
NameScope *curScope;
@@ -33,7 +33,7 @@ struct BaseParser
bool insideRegion()
{ return regionStack.length() > 0; }
- Context *curStruct()
+ StructDef *curStruct()
{ return structStack.length() == 0 ? 0 : structStack.top(); }
Namespace *curNspace()