Index: src/SynTree/Expression.cc
===================================================================
--- src/SynTree/Expression.cc	(revision 668edd6b6837054bf6f09f88e32dc4bcf19590fe)
+++ src/SynTree/Expression.cc	(revision 4ffdd638467baad09e66da0dfc9fb3e7dd4f9f5a)
@@ -10,5 +10,5 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Rob Schluntz
-// Last Modified On : Tue Apr 26 12:58:05 2016
+// Last Modified On : Wed Apr 27 17:07:19 2016
 // Update Count     : 40
 //
@@ -473,5 +473,4 @@
 
 ImplicitCopyCtorExpr::ImplicitCopyCtorExpr( const ImplicitCopyCtorExpr & other ) : Expression( other ), callExpr( maybeClone( other.callExpr ) ) {
-	cloneAll( other.copyCtors, copyCtors );
 	cloneAll( other.tempDecls, tempDecls );
 	cloneAll( other.returnDecls, returnDecls );
@@ -481,5 +480,4 @@
 ImplicitCopyCtorExpr::~ImplicitCopyCtorExpr() {
 	delete callExpr;
-	deleteAll( copyCtors );
 	deleteAll( tempDecls );
 	deleteAll( returnDecls );
@@ -493,6 +491,4 @@
 	os << std::endl << std::string( indent, ' ' ) << "with temporaries:" << std::endl;
 	printAll(tempDecls, os, indent+2);
-	os << std::endl << std::string( indent, ' ' ) << "with copyCtors:" << std::endl;
-	printAll(copyCtors, os, indent+2);
 	os << std::endl << std::string( indent, ' ' ) << "with return temporaries:" << std::endl;
 	printAll(returnDecls, os, indent+2);
Index: src/SynTree/Expression.h
===================================================================
--- src/SynTree/Expression.h	(revision 668edd6b6837054bf6f09f88e32dc4bcf19590fe)
+++ src/SynTree/Expression.h	(revision 4ffdd638467baad09e66da0dfc9fb3e7dd4f9f5a)
@@ -10,5 +10,5 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Rob Schluntz
-// Last Modified On : Thu Apr 14 15:40:56 2016
+// Last Modified On : Wed Apr 27 17:06:49 2016
 // Update Count     : 21
 //
@@ -571,7 +571,4 @@
 	void set_callExpr( ApplicationExpr *newValue ) { callExpr = newValue; }
 
-	std::list< Expression * > & get_copyCtors() { return copyCtors; }
-	void set_copyCtors( std::list< Expression * > newValue ) { copyCtors = newValue; }
-
 	std::list< ObjectDecl * > & get_tempDecls() { return tempDecls; }
 	void set_tempDecls( std::list< ObjectDecl * > newValue ) { tempDecls = newValue; }
@@ -589,5 +586,4 @@
   private:
 	ApplicationExpr * callExpr;
-	std::list< Expression * > copyCtors;
 	std::list< ObjectDecl * > tempDecls;
 	std::list< ObjectDecl * > returnDecls;
Index: src/SynTree/Mutator.cc
===================================================================
--- src/SynTree/Mutator.cc	(revision 668edd6b6837054bf6f09f88e32dc4bcf19590fe)
+++ src/SynTree/Mutator.cc	(revision 4ffdd638467baad09e66da0dfc9fb3e7dd4f9f5a)
@@ -10,5 +10,5 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Rob Schluntz
-// Last Modified On : Mon Apr 18 17:29:55 2016
+// Last Modified On : Wed Apr 27 17:07:29 2016
 // Update Count     : 16
 //
@@ -339,5 +339,4 @@
 Expression* Mutator::mutate( ImplicitCopyCtorExpr *impCpCtorExpr ) {
 	impCpCtorExpr->set_callExpr( maybeMutate( impCpCtorExpr->get_callExpr(), *this ) );
-	mutateAll( impCpCtorExpr->get_copyCtors(), *this );
 	mutateAll( impCpCtorExpr->get_tempDecls(), *this );
 	mutateAll( impCpCtorExpr->get_returnDecls(), *this );
Index: src/SynTree/Visitor.cc
===================================================================
--- src/SynTree/Visitor.cc	(revision 668edd6b6837054bf6f09f88e32dc4bcf19590fe)
+++ src/SynTree/Visitor.cc	(revision 4ffdd638467baad09e66da0dfc9fb3e7dd4f9f5a)
@@ -10,5 +10,5 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Rob Schluntz
-// Last Modified On : Mon Apr 18 17:30:10 2016
+// Last Modified On : Wed Apr 27 17:07:40 2016
 // Update Count     : 18
 //
@@ -286,5 +286,4 @@
 void Visitor::visit( ImplicitCopyCtorExpr *impCpCtorExpr ) {
 	maybeAccept( impCpCtorExpr->get_callExpr(), *this );
-	acceptAll( impCpCtorExpr->get_copyCtors(), *this );
 	acceptAll( impCpCtorExpr->get_tempDecls(), *this );
 	acceptAll( impCpCtorExpr->get_returnDecls(), *this );
