Index: src/CodeGen/GenType.cc
===================================================================
--- src/CodeGen/GenType.cc	(revision 450805a716c876db6dad217ff991f1df287a794b)
+++ src/CodeGen/GenType.cc	(revision 381bea69eb8b86074ee4096b96a9b80542346e12)
@@ -27,7 +27,6 @@
 namespace CodeGen {
 	struct GenType : public WithVisitorRef<GenType>, public WithShortCircuiting {
-		GenType( const std::string &typeString, bool pretty = false, bool genC = false, bool lineMarks = false );
-		std::string get_typeString() const { return typeString; }
-		void set_typeString( const std::string &newValue ) { typeString = newValue; }
+		std::string typeString;
+		GenType( const std::string &typeString, bool pretty, bool genC, bool lineMarks );
 
 		void previsit( BaseSyntaxNode * );
@@ -58,8 +57,7 @@
 		void genArray( const Type::Qualifiers &qualifiers, Type *base, Expression *dimension, bool isVarLen, bool isStatic );
 
-		std::string typeString;
-		bool pretty = false; // pretty print
-		bool genC = false;   // generating C code?
-		bool lineMarks = false;
+		bool pretty = false;    // pretty print
+		bool genC = false;      // generating C code?
+		bool lineMarks = false; // lineMarks on for CodeGenerator?
 	};
 
@@ -74,5 +72,5 @@
 
 		type->accept( gt );
-		return os.str() + gt.pass.get_typeString();
+		return os.str() + gt.pass.typeString;
 	}
 
