Index: src/SynTree/BasicType.cc
===================================================================
--- src/SynTree/BasicType.cc	(revision 033ff3711d4010b2ccdeb4a02f5a7a01b1512ca6)
+++ src/SynTree/BasicType.cc	(revision f1da02cd5299f409dc2e2165e4caaec272bfd394)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Jan 31 21:37:36 2019
-// Update Count     : 12
+// Last Modified On : Sun Aug  4 21:07:44 2019
+// Update Count     : 13
 //
 
@@ -31,39 +31,4 @@
 bool BasicType::isInteger() const {
 	return kind <= UnsignedInt128;
-#if 0
-	switch ( kind ) {
-	  case Bool:
-	  case Char:
-	  case SignedChar:
-	  case UnsignedChar:
-	  case ShortSignedInt:
-	  case ShortUnsignedInt:
-	  case SignedInt:
-	  case UnsignedInt:
-	  case LongSignedInt:
-	  case LongUnsignedInt:
-	  case LongLongSignedInt:
-	  case LongLongUnsignedInt:
-	  case SignedInt128:
-	  case UnsignedInt128:
-		return true;
-	  case Float:
-	  case Double:
-	  case LongDouble:
-	  case FloatComplex:
-	  case DoubleComplex:
-	  case LongDoubleComplex:
-	  case FloatImaginary:
-	  case DoubleImaginary:
-	  case LongDoubleImaginary:
-	  case Float80:
-	  case Float128:
-		return false;
-	  case NUMBER_OF_BASIC_TYPES:
-		assert( false );
-	} // switch
-	assert( false );
-	return false;
-#endif
 }
 
Index: src/SynTree/Type.cc
===================================================================
--- src/SynTree/Type.cc	(revision 033ff3711d4010b2ccdeb4a02f5a7a01b1512ca6)
+++ src/SynTree/Type.cc	(revision f1da02cd5299f409dc2e2165e4caaec272bfd394)
@@ -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 : Fri Jul 12 15:48:00 2019
-// Update Count     : 44
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Sun Aug  4 21:05:07 2019
+// Update Count     : 45
 //
 #include "Type.h"
@@ -24,46 +24,5 @@
 using namespace std;
 
-const char *BasicType::typeNames[] = {
-#if 0
-	"_Bool",
-	"char",
-	"signed char",
-	"unsigned char",
-	"signed short int",
-	"unsigned short int",
-	"signed int",
-	"unsigned int",
-	"signed long int",
-	"unsigned long int",
-	"signed long long int",
-	"unsigned long long int",
-	"float",
-	"double",
-	"long double",
-	"float _Complex",
-	"double _Complex",
-	"long double _Complex",
-	"float _Imaginary",
-	"double _Imaginary",
-	"long double _Imaginary",
-	"__int128",
-	"unsigned __int128",
-	"__float80",
-	"__float128",
-	"_Float16",
-	"_Float32",
-	"_Float32x",
-	"_Float64",
-	"_Float64x",
-	"_Float128",
-	"_Float128x",
-	"_Float16 _Complex",
-	"_Float32 _Complex",
-	"_Float32x _Complex",
-	"_Float64 _Complex",
-	"_Float64x _Complex",
-	"_Float128 _Complex",
-	"_Float128x _Complex",
-#endif
+const char * BasicType::typeNames[] = {
 	"_Bool",
 	"char",
@@ -107,5 +66,5 @@
 };
 static_assert(
-	sizeof(BasicType::typeNames)/sizeof(BasicType::typeNames[0]) == BasicType::NUMBER_OF_BASIC_TYPES,
+	sizeof(BasicType::typeNames) / sizeof(BasicType::typeNames[0]) == BasicType::NUMBER_OF_BASIC_TYPES,
 	"Each basic type name should have a corresponding kind enum value"
 );
@@ -152,5 +111,5 @@
 TypeSubstitution Type::genericSubstitution() const { assertf( false, "Non-aggregate type: %s", toCString( this ) ); }
 
-void Type::print( std::ostream &os, Indenter indent ) const {
+void Type::print( std::ostream & os, Indenter indent ) const {
 	if ( ! forall.empty() ) {
 		os << "forall" << std::endl;
