Index: src/Parser/TypeData.cc
===================================================================
--- src/Parser/TypeData.cc	(revision bdad1679f40fec0e4461625698d690f39d1cb950)
+++ src/Parser/TypeData.cc	(revision 8f610e85034e657895664d61abfdf69e19a46724)
@@ -10,6 +10,6 @@
 // Created On       : Sat May 16 15:12:51 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Wed Mar  2 16:34:22 2016
-// Update Count     : 47
+// Last Modified On : Wed Mar  2 17:08:38 2016
+// Update Count     : 48
 //
 
@@ -520,5 +520,5 @@
 		return buildTypeof();
 	  case Builtin:
-		return new VarArgsType();
+		return new VarArgsType( buildQualifiers() );
 	  case Attr:
 		return buildAttr();
Index: src/SynTree/Type.h
===================================================================
--- src/SynTree/Type.h	(revision bdad1679f40fec0e4461625698d690f39d1cb950)
+++ src/SynTree/Type.h	(revision 8f610e85034e657895664d61abfdf69e19a46724)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Feb 26 14:34:08 2016
-// Update Count     : 19
+// Last Modified On : Wed Mar  2 17:10:38 2016
+// Update Count     : 20
 //
 
@@ -404,5 +404,5 @@
   public:
 	VarArgsType();
-	VarArgsType( Type::Qualifiers &tq );
+	VarArgsType( Type::Qualifiers tq );
 
 	virtual VarArgsType *clone() const { return new VarArgsType( *this ); }
Index: src/SynTree/VarArgsType.cc
===================================================================
--- src/SynTree/VarArgsType.cc	(revision bdad1679f40fec0e4461625698d690f39d1cb950)
+++ src/SynTree/VarArgsType.cc	(revision 8f610e85034e657895664d61abfdf69e19a46724)
@@ -9,7 +9,7 @@
 // Author           : Aaron B. Moss
 // Created On       : Thu Feb 25 16:34:00 2016
-// Last Modified By : Aaron B. Moss
-// Last Modified On : Thu Feb 25 16:34:00 2016
-// Update Count     : 1
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Wed Mar  2 17:10:40 2016
+// Update Count     : 2
 //
 
@@ -18,5 +18,5 @@
 VarArgsType::VarArgsType() : Type( Type::Qualifiers() ) {}
 
-VarArgsType::VarArgsType( Type::Qualifiers &tq ) : Type( tq ) {}
+VarArgsType::VarArgsType( Type::Qualifiers tq ) : Type( tq ) {}
 
 void VarArgsType::print( std::ostream &os, int indent ) const {
