aboutsummaryrefslogtreecommitdiff
path: root/model.h
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2013-08-09 12:41:49 +0800
committerTeddy <ted.sybil@gmail.com>2013-08-09 12:41:49 +0800
commit01b2c905872ff38d5d8291f2f8de92c2771f183f (patch)
treebd3622d29d29cc1f7205a79eca9a15ee377c719a /model.h
parent0c606491335e99017897a7710461214412243dd7 (diff)
removed `skip` field from Pair, use `next` to make jumps insteadskip_removal
Diffstat (limited to 'model.h')
-rw-r--r--model.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/model.h b/model.h
index 7a53c8e..a4c6a1f 100644
--- a/model.h
+++ b/model.h
@@ -127,7 +127,6 @@ class Pair : public EvalObj {
public:
EvalObj *car; /**< car (as in Scheme) */
EvalObj *cdr; /**< cdr (as in Scheme) */
- bool skip; /**< Wether to skip the current branch */
Pair* next; /**< The next branch in effect */
Pair(EvalObj *car, EvalObj *cdr); /**< Create a Pair (car . cdr) */