From c698116cf88a9e48085b5741f10db4f8c48e8fe5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 26 Dec 2010 17:56:27 +0000 Subject: Remove AType copy constructor. git-svn-id: http://svn.drobilla.net/resp/resp@354 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- src/lift.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lift.cpp') diff --git a/src/lift.cpp b/src/lift.cpp index 6e1767a..25940f4 100644 --- a/src/lift.cpp +++ b/src/lift.cpp @@ -115,9 +115,9 @@ lift_fn(CEnv& cenv, Code& code, const ATuple* fn) throw() cenv.push(); const AType* type = cenv.type(fn); AType::const_iterator tp = type->prot()->begin(); - List implProtT; - List implProt; + List implProt; + List implProtT; // Prepend closure parameter implProt.push_back(cenv.penv.sym("_me")); @@ -130,7 +130,7 @@ lift_fn(CEnv& cenv, Code& code, const ATuple* fn) throw() } cenv.def((*p)->as_symbol(), *p, paramType, NULL); implProt.push_back(*p); - implProtT.push_back(new AType(*paramType)); + implProtT.push_back(paramType); } impl.push_back(implProt); -- cgit v1.2.1