Remove unused field Expr::marker.
This commit is contained in:
parent
84a6511cfc
commit
c5082f73a4
|
@ -300,7 +300,6 @@ int Expr::Nodes(void) {
|
||||||
Expr *Expr::DeepCopy(void) {
|
Expr *Expr::DeepCopy(void) {
|
||||||
Expr *n = AllocExpr();
|
Expr *n = AllocExpr();
|
||||||
*n = *this;
|
*n = *this;
|
||||||
n->marker = 0;
|
|
||||||
int c = n->Children();
|
int c = n->Children();
|
||||||
if(c > 0) n->a = a->DeepCopy();
|
if(c > 0) n->a = a->DeepCopy();
|
||||||
if(c > 1) n->b = b->DeepCopy();
|
if(c > 1) n->b = b->DeepCopy();
|
||||||
|
|
|
@ -12,7 +12,6 @@ class Expr;
|
||||||
|
|
||||||
class Expr {
|
class Expr {
|
||||||
public:
|
public:
|
||||||
uint32_t marker;
|
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
// A parameter, by the hParam handle
|
// A parameter, by the hParam handle
|
||||||
|
|
Loading…
Reference in New Issue
Block a user