Remove unused field Expr::marker.

pull/4/head
EvilSpirit 2016-01-09 17:40:08 +06:00 committed by whitequark
parent 84a6511cfc
commit c5082f73a4
2 changed files with 0 additions and 2 deletions

View File

@ -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();

View File

@ -12,7 +12,6 @@ class Expr;
class Expr {
public:
uint32_t marker;
enum {
// A parameter, by the hParam handle