Index: src/CodeGen/CodeGenerator.h
===================================================================
--- src/CodeGen/CodeGenerator.h	(revision eb3261fd6cc2439133a09df37e3122c389e05622)
+++ src/CodeGen/CodeGenerator.h	(revision b5c5684d38741cc1fee5bb12939570bd0322a24d)
@@ -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 : Tue Jun 02 13:43:29 2015
-// Update Count     : 14
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Mon Jun  8 14:34:43 2015
+// Update Count     : 15
 //
 
@@ -17,5 +17,4 @@
 #define CODEGENV_H
 
-#include <strstream>
 #include <list>
 
Index: src/CodeGen/GenType.cc
===================================================================
--- src/CodeGen/GenType.cc	(revision eb3261fd6cc2439133a09df37e3122c389e05622)
+++ src/CodeGen/GenType.cc	(revision b5c5684d38741cc1fee5bb12939570bd0322a24d)
@@ -10,9 +10,9 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Jun  4 14:04:58 2015
-// Update Count     : 4
-//
-
-#include <strstream>
+// Last Modified On : Mon Jun  8 14:36:02 2015
+// Update Count     : 9
+//
+
+#include <sstream>
 #include <cassert>
 
@@ -68,5 +68,5 @@
 
 	void GenType::genArray( const Type::Qualifiers &qualifiers, Type *base, Expression *dimension, bool isVarLen, bool isStatic ) {
-		std::ostrstream os;
+		std::ostringstream os;
 		if ( typeString != "" ) {
 			if ( typeString[ 0 ] == '*' ) {
@@ -102,5 +102,5 @@
 		os << "]";
 
-		typeString = std::string( os.str(), os.pcount() );
+		typeString = os.str();
   
 		base->accept( *this );
@@ -127,5 +127,5 @@
 
 	void GenType::visit( FunctionType *funcType ) {
-		std::ostrstream os;
+		std::ostringstream os;
 
 		if ( typeString != "" ) {
@@ -159,5 +159,5 @@
 		} // if
   
-		typeString = std::string( os.str(), os.pcount() );
+		typeString = os.str();
 
 		if ( funcType->get_returnVals().size() == 0 ) {
