Index: src/SynTree/Declaration.h
===================================================================
--- src/SynTree/Declaration.h	(revision 138e29ecafd7b7c16c01bc5bf07aa51231168aa0)
+++ src/SynTree/Declaration.h	(revision 3a5131ed67382189022455b971ca8ed0a8f3e6a9)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Feb  9 14:27:08 2017
-// Update Count     : 56
+// Last Modified On : Thu Feb 16 14:53:35 2017
+// Update Count     : 57
 //
 
@@ -140,6 +140,4 @@
 	CompoundStmt *get_statements() const { return statements; }
 	void set_statements( CompoundStmt *newValue ) { statements = newValue; }
-	std::list< std::string >& get_oldIdents() { return oldIdents; }
-	std::list< Declaration* >& get_oldDecls() { return oldDecls; }
 
 	virtual FunctionDecl *clone() const { return new FunctionDecl( *this ); }
@@ -151,6 +149,4 @@
 	FunctionType *type;
 	CompoundStmt *statements;
-	std::list< std::string > oldIdents;
-	std::list< Declaration* > oldDecls;
 };
 
Index: src/SynTree/FunctionDecl.cc
===================================================================
--- src/SynTree/FunctionDecl.cc	(revision 138e29ecafd7b7c16c01bc5bf07aa51231168aa0)
+++ src/SynTree/FunctionDecl.cc	(revision 3a5131ed67382189022455b971ca8ed0a8f3e6a9)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sat Oct  1 23:06:32 2016
-// Update Count     : 21
+// Last Modified On : Thu Feb 16 15:01:52 2017
+// Update Count     : 23
 //
 
@@ -44,5 +44,4 @@
 	delete type;
 	delete statements;
-	deleteAll( oldDecls );
 }
 
@@ -84,15 +83,4 @@
 	} // if
 
-	if ( ! oldIdents.empty() ) {
-		os << string( indent + 2, ' ' ) << "with parameter names" << endl;
-		for ( std::list< std::string >::const_iterator i = oldIdents.begin(); i != oldIdents.end(); ++i ) {
-			os << string( indent + 4, ' ' ) << *i << endl;
-		} // for
-	} // if
-
-	if ( ! oldDecls.empty() ) {
-		os << string( indent + 2, ' ' ) << "with parameter declarations" << endl;
-		printAll( oldDecls, os, indent + 4 );
-	} // if
 	if ( statements ) {
 		os << string( indent + 2, ' ' ) << "with body " << endl;
Index: src/SynTree/Mutator.cc
===================================================================
--- src/SynTree/Mutator.cc	(revision 138e29ecafd7b7c16c01bc5bf07aa51231168aa0)
+++ src/SynTree/Mutator.cc	(revision 3a5131ed67382189022455b971ca8ed0a8f3e6a9)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Feb  9 14:22:56 2017
-// Update Count     : 20
+// Last Modified On : Thu Feb 16 15:02:23 2017
+// Update Count     : 21
 //
 
@@ -38,5 +38,4 @@
 DeclarationWithType *Mutator::mutate( FunctionDecl *functionDecl ) {
 	functionDecl->set_functionType( maybeMutate( functionDecl->get_functionType(), *this ) );
-	mutateAll( functionDecl->get_oldDecls(), *this );
 	functionDecl->set_statements( maybeMutate( functionDecl->get_statements(), *this ) );
 	return functionDecl;
Index: src/SynTree/Visitor.cc
===================================================================
--- src/SynTree/Visitor.cc	(revision 138e29ecafd7b7c16c01bc5bf07aa51231168aa0)
+++ src/SynTree/Visitor.cc	(revision 3a5131ed67382189022455b971ca8ed0a8f3e6a9)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Feb  9 14:19:22 2017
-// Update Count     : 22
+// Last Modified On : Thu Feb 16 15:01:25 2017
+// Update Count     : 23
 //
 
@@ -35,5 +35,4 @@
 void Visitor::visit( FunctionDecl *functionDecl ) {
 	maybeAccept( functionDecl->get_functionType(), *this );
-	acceptAll( functionDecl->get_oldDecls(), *this );
 	maybeAccept( functionDecl->get_statements(), *this );
 }
