Index: src/SynTree/Mutator.h
===================================================================
--- src/SynTree/Mutator.h	(revision ed94eac215a2568f1137e5c48ae381748645fef2)
+++ src/SynTree/Mutator.h	(revision 839ccbb4f2b1444ec5ecfdc58dafbca86c655aec)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Jul 23 23:24:18 2015
-// Update Count     : 7
+// Last Modified On : Thu Nov 19 22:26:16 2015
+// Update Count     : 8
 //
 #include <cassert>
@@ -103,5 +103,5 @@
 inline TreeType *maybeMutate( TreeType *tree, MutatorType &mutator ) {
 	if ( tree ) {
-		TreeType *newnode = dynamic_cast< TreeType* >( tree->acceptMutator( mutator ) );
+		TreeType *newnode = dynamic_cast< TreeType * >( tree->acceptMutator( mutator ) );
 		assert( newnode );
 		return newnode;
Index: src/SynTree/Type.h
===================================================================
--- src/SynTree/Type.h	(revision ed94eac215a2568f1137e5c48ae381748645fef2)
+++ src/SynTree/Type.h	(revision 839ccbb4f2b1444ec5ecfdc58dafbca86c655aec)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Jul  9 16:46:15 2015
-// Update Count     : 14
+// Last Modified On : Fri Nov 20 12:54:09 2015
+// Update Count     : 15
 //
 
@@ -201,6 +201,6 @@
 	std::list<DeclarationWithType*> parameters;
 
-	// does the function accept a variable number of arguments following the arguments
-	// specified in the parameters list.    This could be because of
+	// Does the function accept a variable number of arguments following the arguments specified in the parameters list.
+	// This could be because of
 	// - an ellipsis in a prototype declaration
 	// - an unprototyped declaration
@@ -239,5 +239,5 @@
 
 	/// Accesses generic parameters of base struct (NULL if none such)
-	std::list<TypeDecl*>* get_baseParameters();
+	std::list<TypeDecl*> * get_baseParameters();
 	
 	/// Looks up the members of this struct named "name" and places them into "foundDecls".
@@ -266,5 +266,5 @@
 
 	/// Accesses generic parameters of base union (NULL if none such)
-	std::list<TypeDecl*>* get_baseParameters();
+	std::list<TypeDecl*> * get_baseParameters();
 	
 	/// looks up the members of this union named "name" and places them into "foundDecls"
