aboutsummaryrefslogtreecommitdiff
path: root/types.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'types.cpp')
-rw-r--r--types.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/types.cpp b/types.cpp
index b583061..0cfe0be 100644
--- a/types.cpp
+++ b/types.cpp
@@ -41,14 +41,6 @@ ReprCons *Pair::get_repr_cons() {
return new PairReprCons(this, this);
}
-ParseBracket::ParseBracket(unsigned char _btype) :
- FrameObj(CLS_SIM_OBJ | CLS_PAR_BRA), btype(_btype) {}
-
- UnspecObj::UnspecObj() : EvalObj(CLS_SIM_OBJ) {}
-
- ReprCons *UnspecObj::get_repr_cons() {
- return new ReprStr("#<Unspecified>");
- }
SymObj::SymObj(const string &str) :
EvalObj(CLS_SIM_OBJ | CLS_SYM_OBJ), val(str) {}