diff --git a/src/expr.cpp b/src/expr.cpp index 0f23a59..4d630da 100644 --- a/src/expr.cpp +++ b/src/expr.cpp @@ -300,7 +300,6 @@ int Expr::Nodes(void) { Expr *Expr::DeepCopy(void) { Expr *n = AllocExpr(); *n = *this; - n->marker = 0; int c = n->Children(); if(c > 0) n->a = a->DeepCopy(); if(c > 1) n->b = b->DeepCopy(); diff --git a/src/expr.h b/src/expr.h index 4ba1a45..e2ce454 100644 --- a/src/expr.h +++ b/src/expr.h @@ -12,7 +12,6 @@ class Expr; class Expr { public: - uint32_t marker; enum { // A parameter, by the hParam handle