Index: src/Concurrency/Waitfor.cc
===================================================================
--- src/Concurrency/Waitfor.cc	(revision 1f86d5e0e812ef5df6a8c2b48266487b25b5362a)
+++ src/Concurrency/Waitfor.cc	(revision aac99da6739d48d03fa818583c7e87f28d476990)
@@ -11,5 +11,5 @@
 // Last Modified By :
 // Last Modified On :
-// Update Count     : 5
+// Update Count     : 6
 //
 
@@ -329,5 +329,5 @@
 			new BasicType(
 				noQualifiers,
-				BasicType::Bool
+				BasicType::_Bool
 			),
 			new SingleInit( new ConstantExpr( Constant::from_ulong( 0 ) ) )
Index: src/ControlStruct/ExceptTranslate.cc
===================================================================
--- src/ControlStruct/ExceptTranslate.cc	(revision 1f86d5e0e812ef5df6a8c2b48266487b25b5362a)
+++ src/ControlStruct/ExceptTranslate.cc	(revision aac99da6739d48d03fa818583c7e87f28d476990)
@@ -9,7 +9,7 @@
 // Author           : Andrew Beach
 // Created On       : Wed Jun 14 16:49:00 2017
-// Last Modified By : Andrew Beach
-// Last Modified On : Thr Aug 17 17:19:00 2017
-// Update Count     : 9
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Fri Feb  8 09:33:31 2019
+// Update Count     : 10
 //
 
@@ -165,5 +165,5 @@
 			LinkageSpec::Cforall,
 			/*bitfieldWidth*/ NULL,
-			new BasicType( noQualifiers, BasicType::Bool ),
+			new BasicType( noQualifiers, BasicType::_Bool ),
 			/*init*/ NULL,
 			std::list<Attribute *>{ new Attribute( "unused" ) }
Index: src/InitTweak/FixInit.cc
===================================================================
--- src/InitTweak/FixInit.cc	(revision 1f86d5e0e812ef5df6a8c2b48266487b25b5362a)
+++ src/InitTweak/FixInit.cc	(revision aac99da6739d48d03fa818583c7e87f28d476990)
@@ -10,6 +10,6 @@
 // Created On       : Wed Jan 13 16:29:30 2016
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Wed Jun 21 17:35:05 2017
-// Update Count     : 74
+// Last Modified On : Fri Feb  8 09:35:34 2019
+// Update Count     : 75
 //
 #include "FixInit.h"
@@ -762,5 +762,5 @@
 
 						// static bool __objName_uninitialized = true
-						BasicType * boolType = new BasicType( Type::Qualifiers(), BasicType::Bool );
+						BasicType * boolType = new BasicType( Type::Qualifiers(), BasicType::_Bool );
 						SingleInit * boolInitExpr = new SingleInit( new ConstantExpr( Constant::from_int( 1 ) ) );
 						ObjectDecl * isUninitializedVar = new ObjectDecl( objDecl->get_mangleName() + "_uninitialized", Type::StorageClasses( Type::Static ), LinkageSpec::Cforall, 0, boolType, boolInitExpr );
Index: src/ResolvExpr/Resolver.cc
===================================================================
--- src/ResolvExpr/Resolver.cc	(revision 1f86d5e0e812ef5df6a8c2b48266487b25b5362a)
+++ src/ResolvExpr/Resolver.cc	(revision aac99da6739d48d03fa818583c7e87f28d476990)
@@ -9,7 +9,7 @@
 // Author           : Richard C. Bilson
 // Created On       : Sun May 17 12:17:01 2015
-// Last Modified By : Aaron B. Moss
-// Last Modified On : Fri Oct 05 09:43:00 2018
-// Update Count     : 214
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Fri Feb  8 09:31:26 2019
+// Update Count     : 215
 //
 
@@ -562,5 +562,5 @@
 	void Resolver::previsit( CatchStmt *catchStmt ) {
 		if ( catchStmt->cond ) {
-			findSingleExpression( catchStmt->cond, new BasicType( noQualifiers, BasicType::Bool ), indexer );
+			findSingleExpression( catchStmt->cond, new BasicType( noQualifiers, BasicType::_Bool ), indexer );
 		}
 	}
Index: src/SynTree/Constant.cc
===================================================================
--- src/SynTree/Constant.cc	(revision 1f86d5e0e812ef5df6a8c2b48266487b25b5362a)
+++ src/SynTree/Constant.cc	(revision aac99da6739d48d03fa818583c7e87f28d476990)
@@ -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 Spt 28 14:49:00 2018
-// Update Count     : 30
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Fri Feb  8 09:18:01 2019
+// Update Count     : 31
 //
 
@@ -32,5 +32,5 @@
 
 Constant Constant::from_bool( bool b ) {
-	return Constant( new BasicType( Type::Qualifiers(), BasicType::Bool ), b ? "1" : "0" , (unsigned long long int)b );
+	return Constant( new BasicType( Type::Qualifiers(), BasicType::_Bool ), b ? "1" : "0" , (unsigned long long int)b );
 }
 
Index: src/Tuples/TupleExpansion.cc
===================================================================
--- src/Tuples/TupleExpansion.cc	(revision 1f86d5e0e812ef5df6a8c2b48266487b25b5362a)
+++ src/Tuples/TupleExpansion.cc	(revision aac99da6739d48d03fa818583c7e87f28d476990)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Wed Jun 21 17:35:04 2017
-// Update Count     : 19
+// Last Modified On : Fri Feb  8 09:31:55 2019
+// Update Count     : 20
 //
 
@@ -168,5 +168,5 @@
 				commaExpr->set_arg1( nullptr );
 			}
-			ObjectDecl * finished = new ObjectDecl( toString( "_unq", id, "_finished_" ), Type::StorageClasses(), LinkageSpec::Cforall, nullptr, new BasicType( Type::Qualifiers(), BasicType::Bool ),
+			ObjectDecl * finished = new ObjectDecl( toString( "_unq", id, "_finished_" ), Type::StorageClasses(), LinkageSpec::Cforall, nullptr, new BasicType( Type::Qualifiers(), BasicType::_Bool ),
 													new SingleInit( new ConstantExpr( Constant::from_int( 0 ) ) ) );
 			declsToAddBefore.push_back( finished );
