diff options
Diffstat (limited to 'tuplr.hpp')
-rw-r--r-- | tuplr.hpp | 14 |
1 files changed, 0 insertions, 14 deletions
@@ -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 { |