Index: src/InitTweak/FixGlobalInit.cc
===================================================================
--- src/InitTweak/FixGlobalInit.cc	(revision 3f97e68e67d0d35296c2b84b024ca05d67e56b83)
+++ src/InitTweak/FixGlobalInit.cc	(revision d32c4e295f91b7b5d9ffc75dd2c9e23529a5c41d)
@@ -9,7 +9,7 @@
 // Author           : Rob Schluntz
 // Created On       : Mon May 04 15:14:56 2016
-// Last Modified By : Rob Schluntz
-// Last Modified On : Fri May 13 11:37:30 2016
-// Update Count     : 2
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Wed Jun 29 22:33:15 2016
+// Update Count     : 4
 //
 
@@ -85,5 +85,5 @@
 			init->accept( checker );
 			return checker.isConstExpr;
-		}
+		} // if
 		// for all intents and purposes, no initializer means const expr
 		return true;
@@ -98,10 +98,11 @@
 		} else {
 			translationUnit.push_back( fixer.initFunction );
-		}
+		} // if
+
 		if ( fixer.destroyFunction->get_statements()->get_kids().empty() ) {
 			delete fixer.destroyFunction;
 		} else {
 			translationUnit.push_back( fixer.destroyFunction );
-		}
+		} // if
 	}
 
@@ -146,5 +147,5 @@
 		// if ( isConstExpr( objDecl->get_init() ) ) return;
 
-		if ( ArrayType * at = dynamic_cast< ArrayType * > ( objDecl->get_type() ) ) {
+		if ( dynamic_cast< ArrayType * > ( objDecl->get_type() ) ) {
 			// xxx - initialize each element of the array
 		} else {
@@ -164,5 +165,5 @@
 			destroy->get_args().push_back( new AddressExpr( new VariableExpr( objDecl ) ) );
 			destroyStatements.push_front( new ImplicitCtorDtorStmt( new ExprStmt( noLabels, destroy ) ) );
-		}
+		} // if
 	}
 
