Index: src/SynTree/BasicType.cc
===================================================================
--- src/SynTree/BasicType.cc	(revision e612146ca26ec8e8adeb5426e498fe10f3523f40)
+++ src/SynTree/BasicType.cc	(revision a54840b150210fdedf1bf84dc118deea22554dba)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Wed Feb  1 17:12:15 2017
-// Update Count     : 8
+// Last Modified On : Mon Sep 11 12:52:05 2017
+// Update Count     : 9
 //
 
@@ -25,13 +25,6 @@
 
 void BasicType::print( std::ostream &os, int indent ) const {
-	static const char *kindNames[] = {	
-		"_Bool", "char", "signed char", "unsigned char", "short signed int", "short unsigned int",
-		"signed int", "unsigned int", "long signed int", "long unsigned int", "long long signed int",
-		"long long unsigned int", "float", "double", "long double", "float _Complex", "double _Complex",
-		"long double _Complex", "float _Imaginary", "double _Imaginary", "long double _Imaginary"
-	};
-
 	Type::print( os, indent );
-	os << kindNames[ kind ];
+	os << BasicType::typeNames[ kind ];
 }
 
Index: src/SynTree/Type.cc
===================================================================
--- src/SynTree/Type.cc	(revision e612146ca26ec8e8adeb5426e498fe10f3523f40)
+++ src/SynTree/Type.cc	(revision a54840b150210fdedf1bf84dc118deea22554dba)
@@ -9,7 +9,7 @@
 // Author           : Richard C. Bilson
 // Created On       : Mon May 18 07:44:20 2015
-// Last Modified By : Andrew Beach
-// Last Modified On : Wed Aug  2 11:11:00 2017
-// Update Count     : 29
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Mon Sep 11 13:21:25 2017
+// Update Count     : 37
 //
 #include "Type.h"
@@ -26,14 +26,14 @@
 	"_Bool",
 	"char",
-	"char",
+	"signed char",
 	"unsigned char",
-	"short",
-	"short unsigned",
-	"int",
+	"signed short int",
+	"unsigned short int",
+	"signed int",
 	"unsigned int",
-	"long int",
-	"long unsigned int",
-	"long long int",
-	"long long unsigned int",
+	"signed long int",
+	"unsigned long int",
+	"signed long long int",
+	"unsigned long long int",
 	"float",
 	"double",
@@ -65,16 +65,13 @@
 
 Type * Type::stripDeclarator() {
-	Type * type = this;
-	while ( Type * at = InitTweak::getPointerBase( type ) ) {
-		type = at;
-	}
+	Type * type, * at;
+	for ( type = this; (at = InitTweak::getPointerBase( type )); type = at );
 	return type;
 }
 
 Type * Type::stripReferences() {
-	Type * type = this;
-	while ( ReferenceType * ref = dynamic_cast<ReferenceType *>( type ) ) {
-		type = ref->get_base();
-	}
+	Type * type;
+	ReferenceType * ref;
+	for ( type = this; (ref = dynamic_cast<ReferenceType *>( type )); type = ref->get_base() );
 	return type;
 }
