summaryrefslogtreecommitdiff
path: root/src/parsetree.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parsetree.h')
-rw-r--r--src/parsetree.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/parsetree.h b/src/parsetree.h
index b9725ecf..9ed57523 100644
--- a/src/parsetree.h
+++ b/src/parsetree.h
@@ -586,12 +586,11 @@ typedef DList<StructEl> StructElList;
struct StructDef
{
- StructDef( const String &name, Context *context, Namespace *nspace )
- : name(name), context(context), nspace(nspace) {}
+ StructDef( const String &name, Context *context )
+ : name(name), context(context) {}
String name;
Context *context;
- Namespace *nspace;
StructDef *prev, *next;
};