summaryrefslogtreecommitdiff
path: root/src/pdabuild.cc
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2015-01-05 10:25:21 -0500
committerAdrian Thurston <thurston@complang.org>2015-01-05 10:25:21 -0500
commit54cda6a9e917e9631c5ac21e6159c5753df3d58a (patch)
treea63a918554a504e99dbfb2a5bed37dda44262928 /src/pdabuild.cc
parent4accc36ee55e6ce863ec2e1940ca84b776442e1f (diff)
downloadcolm-54cda6a9e917e9631c5ac21e6159c5753df3d58a.tar.gz
removed the generic pointer from LangEl
Diffstat (limited to 'src/pdabuild.cc')
-rw-r--r--src/pdabuild.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/pdabuild.cc b/src/pdabuild.cc
index 6652d45a..f2621166 100644
--- a/src/pdabuild.cc
+++ b/src/pdabuild.cc
@@ -46,8 +46,6 @@ LangEl::LangEl( Namespace *nspace, const String &name, Type type )
lit(name),
type(type),
id(-1),
- isContext(false),
- //displayString(0),
numAppearances(0),
commit(false),
isIgnore(false),
@@ -69,7 +67,6 @@ LangEl::LangEl( Namespace *nspace, const String &name, Type type )
objectDef(0),
thisSize(0),
ofiOffset(0),
- generic(0),
parserId(-1),
predType(PredNone),
predValue(0),
@@ -1462,7 +1459,6 @@ void Compiler::makeRuntimeData()
// }
runtimeData->lelInfo[i].termDupId = lel->termDup == 0 ? 0 : lel->termDup->id;
- runtimeData->lelInfo[i].genericId = lel->generic == 0 ? 0 : lel->generic->id;
if ( lel->tokenDef != 0 && lel->tokenDef->join != 0 &&
lel->tokenDef->join->context != 0 )