Index: src/SynTree/ReferenceToType.cc
===================================================================
--- src/SynTree/ReferenceToType.cc	(revision 3a5131ed67382189022455b971ca8ed0a8f3e6a9)
+++ src/SynTree/ReferenceToType.cc	(revision 20221d4e655a7821142990aa82e5a87f5b476672)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Feb  2 17:45:07 2017
-// Update Count     : 23
+// Last Modified On : Thu Feb 23 16:38:54 2017
+// Update Count     : 24
 //
 
@@ -23,8 +23,8 @@
 #include "Common/utility.h"
 
-ReferenceToType::ReferenceToType( const Type::Qualifiers &tq, const std::string &name, const std::list< Attribute * > & attributes ) : Type( tq, attributes ), name( name ) {
+ReferenceToType::ReferenceToType( const Type::Qualifiers &tq, const std::string &name, const std::list< Attribute * > & attributes ) : Type( tq, attributes ), name( name ), hoistType( false ) {
 }
 
-ReferenceToType::ReferenceToType( const ReferenceToType &other ) : Type( other ), name( other.name ) {
+ReferenceToType::ReferenceToType( const ReferenceToType &other ) : Type( other ), name( other.name ), hoistType( other.hoistType ) {
 	cloneAll( other.parameters, parameters );
 }
Index: src/SynTree/Type.h
===================================================================
--- src/SynTree/Type.h	(revision 3a5131ed67382189022455b971ca8ed0a8f3e6a9)
+++ src/SynTree/Type.h	(revision 20221d4e655a7821142990aa82e5a87f5b476672)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Feb  2 17:43:01 2017
-// Update Count     : 33
+// Last Modified On : Thu Feb 23 16:38:53 2017
+// Update Count     : 34
 //
 
@@ -240,4 +240,6 @@
 	void set_name( std::string newValue ) { name = newValue; }
 	std::list< Expression* >& get_parameters() { return parameters; }
+	bool get_hoistType() const { return hoistType; }
+	void set_hoistType( bool newValue ) { hoistType = newValue; }
 
 	virtual ReferenceToType *clone() const = 0;
@@ -250,4 +252,5 @@
 	std::string name;
   private:
+	bool hoistType;
 };
 
