aboutsummaryrefslogtreecommitdiff
path: root/model.h
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2013-08-08 22:40:05 +0800
committerTeddy <ted.sybil@gmail.com>2013-08-08 22:40:05 +0800
commite24962104b203bd699ed3cfa2f30402a1268f9f8 (patch)
tree059e2ca1ee49ca2cafe25cf9d218bd0af9314f3c /model.h
parent64967702d0f58b1f2f2082feccb39a95e2ac4cb2 (diff)
change the name from CONS_OBJ to PAIR_OBJnew_ext
Diffstat (limited to 'model.h')
-rw-r--r--model.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/model.h b/model.h
index be4da2b..dfbca59 100644
--- a/model.h
+++ b/model.h
@@ -22,7 +22,7 @@ const int CLS_REPR_CONS = 1 << 3;
const int CLS_REPR_STR = 1 << 4;
const int CLS_SIM_OBJ = 1 << 0;
-const int CLS_CONS_OBJ = 1 << 1;
+const int CLS_PAIR_OBJ = 1 << 1;
const int CLS_OPT_OBJ = 1 << 3;
@@ -84,7 +84,7 @@ class EvalObj : public FrameObj {
public:
/**
* Construct an EvalObj
- * @param otype the type of the EvalObj (CLS_CONS_OBJ for a
+ * @param otype the type of the EvalObj (CLS_PAIR_OBJ for a
* construction, CLS_SIM_OBJ for a simple object), which defaults to
* CLS_SIM_OBJ
*/