Index: src/Common/utility.h
===================================================================
--- src/Common/utility.h	(revision 4eb1db6706393524fc66d06a1b8e7c5014ecabd8)
+++ src/Common/utility.h	(revision cf0941d1a7dcb73725ea8b7f36c0940bf3f9f146)
@@ -9,7 +9,7 @@
 // Author           : Richard C. Bilson
 // Created On       : Mon May 18 07:44:20 2015
-// Last Modified By : Rob Schluntz
-// Last Modified On : Fri May 29 16:17:02 2015
-// Update Count     : 7
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Thu Jun  4 21:29:57 2015
+// Update Count     : 9
 //
 
@@ -60,5 +60,5 @@
 	for ( typename Container::const_iterator i = container.begin(); i != container.end(); ++i ) {
 		if ( *i ) {
-			os << std::string(indent,  ' ');
+			os << std::string( indent,  ' ' );
 			(*i)->print( os, indent + 2 );
 			os << std::endl;
@@ -151,6 +151,4 @@
 template< typename T >
 void replace( std::list< T > &org, typename std::list< T >::iterator pos, std::list< T > &with ) {
-	// TIter should secretly be a typename std::list< T >::iterator
-	//   ( g++ 3.2 issues a 'is implicitly a typename' warning if I make this explicit )
 	typename std::list< T >::iterator next = pos; advance( next, 1 );
 
