diff options
author | Teddy <[email protected]> | 2013-08-17 16:09:12 +0800 |
---|---|---|
committer | Teddy <[email protected]> | 2013-08-17 16:09:12 +0800 |
commit | ee6d835fe2e8b88b79f35f54684acb8035b527a1 (patch) | |
tree | b9840d910504da3cd43046572e9f8c770498b360 | |
parent | 5e16df071dfd41659b296dfde067749ef216a47c (diff) |
...
-rw-r--r-- | types.cpp | 4 | ||||
-rw-r--r-- | types.h | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -486,9 +486,9 @@ EvalObj *VectReprCons::next(const string &prev) { } } -PromObj::PromObj(EvalObj *exp) : +PromObj::PromObj(EvalObj *_exp) : Container(CLS_SIM_OBJ | CLS_PROM_OBJ), -exp(new Pair(exp, empty_list)), mem(NULL) { +exp(new Pair(_exp, empty_list)), mem(NULL) { gc.attach(exp); exp->next = NULL; } @@ -354,7 +354,7 @@ class PromObj: public Container {/*{{{*/ EvalObj *mem; public: /** Construct with a delayed expression */ - PromObj(EvalObj *exp); + PromObj(EvalObj *_exp); /** The destructor */ ~PromObj(); /** Get the delayed expression */ |