aboutsummaryrefslogtreecommitdiffstats
path: root/tuplr.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tuplr.hpp')
-rw-r--r--tuplr.hpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/tuplr.hpp b/tuplr.hpp
index acf1cec..2d2886e 100644
--- a/tuplr.hpp
+++ b/tuplr.hpp
@@ -279,20 +279,6 @@ struct AType : public ATuple {
push_back(a);
va_end(args);
}
- AType(const AType& copy) : ATuple(copy.loc), kind(copy.kind), id(copy.id) {
- for (AType::const_iterator i = copy.begin(); i != copy.end(); ++i) {
- AType* typ = (*i)->to<AType*>();
- if (typ) {
- push_back(new AType(*typ));
- continue;
- }
- ATuple* tup = (*i)->to<ATuple*>();
- if (tup)
- push_back(new ATuple(*tup));
- else
- push_back(*i);
- }
- }
CValue compile(CEnv& cenv) { return NULL; }
bool var() const { return kind == VAR; }
bool concrete() const {