Index: src/SynTree/Expression.cc
===================================================================
--- src/SynTree/Expression.cc	(revision 70a06f62e367e9c06390ae334378318747bac089)
+++ src/SynTree/Expression.cc	(revision dc2e7e0625c69ea1a4e1ba396569d2cd6cec9f99)
@@ -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:33:12 2016
+// Last Modified On : Mon Apr 18 17:25:06 2016
 // Update Count     : 40
 //
@@ -486,4 +486,6 @@
 	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);
 	Expression::print( os, indent );
 }
Index: src/SynTree/Mutator.cc
===================================================================
--- src/SynTree/Mutator.cc	(revision 70a06f62e367e9c06390ae334378318747bac089)
+++ src/SynTree/Mutator.cc	(revision dc2e7e0625c69ea1a4e1ba396569d2cd6cec9f99)
@@ -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:32:19 2016
+// Last Modified On : Mon Apr 18 17:29:55 2016
 // Update Count     : 16
 //
@@ -341,4 +341,5 @@
 	mutateAll( impCpCtorExpr->get_copyCtors(), *this );
 	mutateAll( impCpCtorExpr->get_tempDecls(), *this );
+	mutateAll( impCpCtorExpr->get_returnDecls(), *this );
 	return impCpCtorExpr;
 }
Index: src/SynTree/Visitor.cc
===================================================================
--- src/SynTree/Visitor.cc	(revision 70a06f62e367e9c06390ae334378318747bac089)
+++ src/SynTree/Visitor.cc	(revision dc2e7e0625c69ea1a4e1ba396569d2cd6cec9f99)
@@ -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:31:18 2016
+// Last Modified On : Mon Apr 18 17:30:10 2016
 // Update Count     : 18
 //
@@ -288,4 +288,5 @@
 	acceptAll( impCpCtorExpr->get_copyCtors(), *this );
 	acceptAll( impCpCtorExpr->get_tempDecls(), *this );
+	acceptAll( impCpCtorExpr->get_returnDecls(), *this );
 }
 
