Index: src/AST/Decl.hpp
===================================================================
--- src/AST/Decl.hpp	(revision 366f5cd47f06469e6c39617fdc1be75acd3f4943)
+++ src/AST/Decl.hpp	(revision 16d862d1f4c7c71a691ebd6ebddf7bf111bc5d11)
@@ -9,7 +9,7 @@
 // Author           : Aaron B. Moss
 // Created On       : Thu May 9 10:00:00 2019
-// Last Modified By : Andrew Beach
-// Last Modified On : Wed Apr  5 10:42:00 2023
-// Update Count     : 35
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Sun Jun 28 21:54:18 2026
+// Update Count     : 36
 //
 
@@ -108,5 +108,5 @@
 	  init( init ), bitfieldWidth( bitWd ) {}
 
-	const Type* get_type() const override { return type; }
+	const Type * get_type() const override { return type; }
 	void set_type( const Type * ty ) override { type = ty; }
 
Index: src/Common/Eval.cpp
===================================================================
--- src/Common/Eval.cpp	(revision 366f5cd47f06469e6c39617fdc1be75acd3f4943)
+++ src/Common/Eval.cpp	(revision 16d862d1f4c7c71a691ebd6ebddf7bf111bc5d11)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sat Aug  6 12:11:59 2022
-// Update Count     : 119
+// Last Modified On : Sun Jun 28 21:50:29 2026
+// Update Count     : 121
 //
 
@@ -200,10 +200,8 @@
 Evaluation eval( const ast::Expr * expr ) {
 	if ( expr ) {
-
 		return ast::Pass<EvalNew>::read(expr);
 		// Evaluation ret = ast::Pass<EvalNew>::read(expr);
 		// ret.knownValue = 777;
 		// return ret;
-
 	} else {
 		return { 0, false, false };
Index: src/GenPoly/GenPoly.cpp
===================================================================
--- src/GenPoly/GenPoly.cpp	(revision 366f5cd47f06469e6c39617fdc1be75acd3f4943)
+++ src/GenPoly/GenPoly.cpp	(revision 16d862d1f4c7c71a691ebd6ebddf7bf111bc5d11)
@@ -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 : Mon Oct 24 15:19:00 2022
-// Update Count     : 17
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Sun Jun 28 21:49:48 2026
+// Update Count     : 18
 //
 
@@ -252,6 +252,5 @@
 bool typesPolyCompatible( ast::Type const * lhs, ast::Type const * rhs );
 
-static bool exprsPolyCompatibleByStaticValue(
-		const ast::Expr * e1, const ast::Expr * e2 ) {
+static bool exprsPolyCompatibleByStaticValue( const ast::Expr * e1, const ast::Expr * e2 ) {
 	Evaluation r1 = eval(e1);
 	Evaluation r2 = eval(e2);
