Index: src/ResolvExpr/RenameVars.cc
===================================================================
--- src/ResolvExpr/RenameVars.cc	(revision c2ad3c956349ba6452ba15e9d447ad02aa3f922b)
+++ src/ResolvExpr/RenameVars.cc	(revision 2de162daa1fcda58a389901441ff013e4fda051a)
@@ -45,7 +45,5 @@
 	void RenameVars::visit( PointerType *pointerType ) {
 		typeBefore( pointerType );
-///   std::cout << "do pointer" << std::endl;
 		maybeAccept( pointerType->get_base(), *this );
-///   std::cout << "done pointer" << std::endl;
 		typeAfter( pointerType );
 	}
@@ -60,9 +58,6 @@
 	void RenameVars::visit( FunctionType *functionType ) {
 		typeBefore( functionType );
-///   std::cout << "return vals" << std::endl;
 		acceptAll( functionType->get_returnVals(), *this );
-///   std::cout << functionType->get_parameters().size() << " parameters" << std::endl;
 		acceptAll( functionType->get_parameters(), *this );
-///   std::cout << "done function" << std::endl;
 		typeAfter( functionType );
 	}
@@ -95,11 +90,8 @@
 	void RenameVars::visit( TypeInstType *instType ) {
 		typeBefore( instType );
-///   std::cout << "instance of type " << instType->get_name() << std::endl;
 		std::map< std::string, std::string >::const_iterator i = mapStack.front().find( instType->get_name() );
 		if ( i != mapStack.front().end() ) {
-///     std::cout << "found name " << i->second << std::endl;
 			instType->set_name( i->second );
 		} else {
-///     std::cout << "no name found" << std::endl;
 		} // if
 		acceptAll( instType->get_parameters(), *this );
@@ -120,7 +112,4 @@
 	void RenameVars::typeBefore( Type *type ) {
 		if ( ! type->get_forall().empty() ) {
-///     std::cout << "type with forall: ";
-///     type->print( std::cout );
-///     std::cout << std::endl;
 			// copies current name mapping into new mapping
 			mapStack.push_front( mapStack.front() );
Index: src/ResolvExpr/typeops.h
===================================================================
--- src/ResolvExpr/typeops.h	(revision c2ad3c956349ba6452ba15e9d447ad02aa3f922b)
+++ src/ResolvExpr/typeops.h	(revision 2de162daa1fcda58a389901441ff013e4fda051a)
@@ -54,4 +54,5 @@
   
 	// in AdjustExprType.cc
+	/// Replaces array types with the equivalent pointer, and function types with a pointer-to-function
 	void adjustExprType( Type *&type, const TypeEnvironment &env, const SymTab::Indexer &indexer );
 
