Index: src/ControlStruct/ExceptTranslate.cc
===================================================================
--- src/ControlStruct/ExceptTranslate.cc	(revision b15f6cf38cf6adeadb0b2a5bed1bf9fa8cdbe97b)
+++ src/ControlStruct/ExceptTranslate.cc	(revision ac10576248aa93c24a41a978d91a9d89b2b01a7e)
@@ -10,6 +10,6 @@
 // Created On       : Wed Jun 14 16:49:00 2017
 // Last Modified By : Andrew Beach
-// Last Modified On : Wed Jul 12 15:07:00 2017
-// Update Count     : 3
+// Last Modified On : Tus Jul 18 10:09:00 2017
+// Update Count     : 4
 //
 
@@ -50,5 +50,5 @@
 			LinkageSpec::Cforall,
 			/*bitfieldWidth*/ NULL,
-			new BasicType( emptyQualifiers, BasicType::SignedInt ),
+			new BasicType( noQualifiers, BasicType::SignedInt ),
 			/*init*/ NULL
 			);
@@ -59,6 +59,6 @@
 			/*bitfieldWidth*/ NULL,
 			new PointerType(
-				emptyQualifiers,
-				new BasicType( emptyQualifiers, BasicType::SignedInt )
+				noQualifiers,
+				new BasicType( noQualifiers, BasicType::SignedInt )
 				),
 			/*init*/ NULL
@@ -69,5 +69,5 @@
 			LinkageSpec::Cforall,
 			/*bitfieldWidth*/ NULL,
-			new BasicType(emptyQualifiers, BasicType::Bool),
+			new BasicType(noQualifiers, BasicType::Bool),
 			/*init*/ NULL
 			);
@@ -78,7 +78,7 @@
 			NULL,
 			new PointerType(
-				emptyQualifiers,
+				noQualifiers,
 				new VoidType(
-					emptyQualifiers
+					noQualifiers
 					),
 				std::list<Attribute *>{new Attribute("unused")}
@@ -143,5 +143,5 @@
 			LinkageSpec::Cforall,
 			NULL,
-			new BasicType( emptyQualifiers, BasicType::SignedInt ),
+			new BasicType( noQualifiers, BasicType::SignedInt ),
 			new SingleInit( throwStmt->get_expr() )
 			);
@@ -444,5 +444,5 @@
 			nullptr,
 			new StructInstType(
-				emptyQualifiers,
+				noQualifiers,
 				hook_decl
 				),
Index: src/Parser/ExpressionNode.cc
===================================================================
--- src/Parser/ExpressionNode.cc	(revision b15f6cf38cf6adeadb0b2a5bed1bf9fa8cdbe97b)
+++ src/Parser/ExpressionNode.cc	(revision ac10576248aa93c24a41a978d91a9d89b2b01a7e)
@@ -9,7 +9,7 @@
 // Author           : Rodolfo G. Esteves
 // Created On       : Sat May 16 13:17:07 2015
-// Last Modified By : Peter A. Buhr
-// Last Modified On : Sat Jul 15 16:09:04 2017
-// Update Count     : 549
+// Last Modified By : Andrew Beach
+// Last Modified On : Tus Jul 18 10:08:00 2017
+// Update Count     : 550
 //
 
@@ -46,5 +46,5 @@
 // type.
 
-Type::Qualifiers emptyQualifiers;				// no qualifiers on constants
+Type::Qualifiers noQualifiers;				// no qualifiers on constants
 
 static inline bool checkU( char c ) { return c == 'u' || c == 'U'; }
@@ -118,5 +118,5 @@
 	} // if
 
-	Expression * ret = new ConstantExpr( Constant( new BasicType( emptyQualifiers, kind[Unsigned][size] ), str, v ) );
+	Expression * ret = new ConstantExpr( Constant( new BasicType( noQualifiers, kind[Unsigned][size] ), str, v ) );
 	delete &str;										// created by lex
 	return ret;
@@ -153,5 +153,5 @@
 	} // if
 
-	Expression * ret = new ConstantExpr( Constant( new BasicType( emptyQualifiers, kind[complx][size] ), str, v ) );
+	Expression * ret = new ConstantExpr( Constant( new BasicType( noQualifiers, kind[complx][size] ), str, v ) );
 	delete &str;										// created by lex
 	return ret;
@@ -159,5 +159,5 @@
 
 Expression *build_constantChar( const std::string & str ) {
-	Expression * ret = new ConstantExpr( Constant( new BasicType( emptyQualifiers, BasicType::Char ), str, (unsigned long long int)(unsigned char)str[1] ) );
+	Expression * ret = new ConstantExpr( Constant( new BasicType( noQualifiers, BasicType::Char ), str, (unsigned long long int)(unsigned char)str[1] ) );
 	delete &str;										// created by lex
 	return ret;
@@ -166,5 +166,5 @@
 ConstantExpr *build_constantStr( const std::string & str ) {
 	// string should probably be a primitive type
-	ArrayType *at = new ArrayType( emptyQualifiers, new BasicType( Type::Qualifiers( Type::Const ), BasicType::Char ),
+	ArrayType *at = new ArrayType( noQualifiers, new BasicType( Type::Qualifiers( Type::Const ), BasicType::Char ),
 								   new ConstantExpr( Constant::from_ulong( str.size() + 1 - 2 ) ),  // +1 for '\0' and -2 for '"'
 								   false, false );
@@ -176,5 +176,5 @@
 
 Expression *build_constantZeroOne( const std::string & str ) {
-	Expression * ret = new ConstantExpr( Constant( str == "0" ? (Type *)new ZeroType( emptyQualifiers ) : (Type*)new OneType( emptyQualifiers ), str,
+	Expression * ret = new ConstantExpr( Constant( str == "0" ? (Type *)new ZeroType( noQualifiers ) : (Type*)new OneType( noQualifiers ), str,
 												   str == "0" ? (unsigned long long int)0 : (unsigned long long int)1 ) );
 	delete &str;										// created by lex
Index: src/Parser/TypeData.cc
===================================================================
--- src/Parser/TypeData.cc	(revision b15f6cf38cf6adeadb0b2a5bed1bf9fa8cdbe97b)
+++ src/Parser/TypeData.cc	(revision ac10576248aa93c24a41a978d91a9d89b2b01a7e)
@@ -10,6 +10,6 @@
 // Created On       : Sat May 16 15:12:51 2015
 // Last Modified By : Andrew Beach
-// Last Modified On : Fri Jul 14 16:58:00 2017
-// Update Count     : 565
+// Last Modified On : Tus Jul 18 10:10:00 2017
+// Update Count     : 566
 //
 
@@ -454,8 +454,8 @@
 	  case TypeData::Builtin:
 		if(td->builtintype == DeclarationNode::Zero) {
-			return new ZeroType( emptyQualifiers );
+			return new ZeroType( noQualifiers );
 		}
 		else if(td->builtintype == DeclarationNode::One) {
-			return new OneType( emptyQualifiers );
+			return new OneType( noQualifiers );
 		}
 		else {
Index: src/Parser/parserutility.cc
===================================================================
--- src/Parser/parserutility.cc	(revision b15f6cf38cf6adeadb0b2a5bed1bf9fa8cdbe97b)
+++ src/Parser/parserutility.cc	(revision ac10576248aa93c24a41a978d91a9d89b2b01a7e)
@@ -9,7 +9,7 @@
 // Author           : Rodolfo G. Esteves
 // Created On       : Sat May 16 15:30:39 2015
-// Last Modified By : Peter A. Buhr
-// Last Modified On : Wed Jun 28 22:11:32 2017
-// Update Count     : 7
+// Last Modified By : Andrew Beach
+// Last Modified On : Tus Jul 18 10:12:00 2017
+// Update Count     : 8
 //
 
@@ -26,5 +26,5 @@
 	UntypedExpr *comparison = new UntypedExpr( new NameExpr( "?!=?" ) );
 	comparison->get_args().push_back( orig );
-	comparison->get_args().push_back( new ConstantExpr( Constant( new ZeroType( emptyQualifiers ), "0", (unsigned long long int)0 ) ) );
+	comparison->get_args().push_back( new ConstantExpr( Constant( new ZeroType( noQualifiers ), "0", (unsigned long long int)0 ) ) );
 	return new CastExpr( comparison, new BasicType( Type::Qualifiers(), BasicType::SignedInt ) );
 }
Index: src/SynTree/Type.h
===================================================================
--- src/SynTree/Type.h	(revision b15f6cf38cf6adeadb0b2a5bed1bf9fa8cdbe97b)
+++ src/SynTree/Type.h	(revision ac10576248aa93c24a41a978d91a9d89b2b01a7e)
@@ -9,7 +9,7 @@
 // Author           : Richard C. Bilson
 // Created On       : Mon May 18 07:44:20 2015
-// Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Mar 23 16:16:36 2017
-// Update Count     : 149
+// Last Modified By : Andrew Beach
+// Last Modified On : Tus Jul 18 10:06:00 2017
+// Update Count     : 150
 //
 
@@ -172,5 +172,5 @@
 };
 
-extern Type::Qualifiers emptyQualifiers;				// no qualifiers on constants
+extern Type::Qualifiers noQualifiers;				// no qualifiers on constants
 
 class VoidType : public Type {
