Index: src/SynTree/Initializer.cc
===================================================================
--- src/SynTree/Initializer.cc	(revision f77f12e2096336ecd8398d4ba8978354d6a0445b)
+++ src/SynTree/Initializer.cc	(revision 7a69460b3cf464e4f2984c2a443c935a47ab9b44)
@@ -10,5 +10,5 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Rob Schluntz
-// Last Modified On : Wed Apr 06 16:15:32 2016
+// Last Modified On : Mon Apr 11 17:36:10 2016
 // Update Count     : 28
 //
@@ -110,4 +110,8 @@
 }
 
+std::ostream & operator<<( std::ostream & out, Initializer * init ) {
+	init->print( out );
+	return out;
+}
 
 // Local Variables: //
Index: src/SynTree/Initializer.h
===================================================================
--- src/SynTree/Initializer.h	(revision f77f12e2096336ecd8398d4ba8978354d6a0445b)
+++ src/SynTree/Initializer.h	(revision 7a69460b3cf464e4f2984c2a443c935a47ab9b44)
@@ -10,5 +10,5 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Rob Schluntz
-// Last Modified On : Wed Mar 30 13:22:08 2016
+// Last Modified On : Mon Apr 11 17:35:30 2016
 // Update Count     : 19
 //
@@ -130,4 +130,6 @@
 };
 
+std::ostream & operator<<( std::ostream & out, Initializer * init );
+
 #endif // INITIALIZER_H
 
