Index: src/GenPoly/Box.cpp
===================================================================
--- src/GenPoly/Box.cpp	(revision 30bf6bf3677858106dafefcbfae7eff10d078623)
+++ src/GenPoly/Box.cpp	(revision 366f5cd47f06469e6c39617fdc1be75acd3f4943)
@@ -10,6 +10,6 @@
 // Created On       : Thr Oct  6 13:39:00 2022
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Dec 14 17:42:17 2023
-// Update Count     : 7
+// Last Modified On : Tue Jun 23 12:31:47 2026
+// Update Count     : 9
 //
 
@@ -265,5 +265,5 @@
 			kids.emplace_back( makeAlignTo( location,
 				derefVar( location, sizeofParam ),
-				new ast::AlignofExpr( location, ast::deepCopy( memberType ) )
+				new ast::AlignofExpr( location, ast::deepCopy( memberType ), ast::AlignofExpr::Alignof )
 			) );
 		}
@@ -285,5 +285,5 @@
 		kids.emplace_back( makeAssignMax( location,
 			derefVar( location, alignofParam ),
-			new ast::AlignofExpr( location, ast::deepCopy( memberType ) ) ) );
+			new ast::AlignofExpr( location, ast::deepCopy( memberType ), ast::AlignofExpr::Alignof ) ) );
 	}
 	// Make sure the type is end-padded to a multiple of its alignment.
@@ -343,5 +343,5 @@
 		kids.emplace_back( makeAssignMax( location,
 			derefVar( location, alignofParam ),
-			new ast::AlignofExpr( location, ast::deepCopy( memberType ) )
+			new ast::AlignofExpr( location, ast::deepCopy( memberType ), ast::AlignofExpr::Alignof )
 		) );
 	}
@@ -807,5 +807,5 @@
 			new ast::SizeofExpr( expr->location, ast::deepCopy( concrete ) ) );
 		extraArgs.emplace_back(
-			new ast::AlignofExpr( expr->location, ast::deepCopy( concrete ) ) );
+			new ast::AlignofExpr( expr->location, ast::deepCopy( concrete ), ast::AlignofExpr::Alignof ) );
 	}
 }
@@ -1723,5 +1723,5 @@
 		alignofName( typeName ), getLayoutCType( transUnit() ),
 		new ast::SingleInit( decl->location,
-			new ast::AlignofExpr( decl->location, deepCopy( base ) )
+			new ast::AlignofExpr( decl->location, deepCopy( base ), ast::AlignofExpr::Alignof )
 		)
 	);
@@ -2199,5 +2199,5 @@
 				new ast::SizeofExpr( location, ast::deepCopy( param ) ) );
 			args.emplace_back(
-				new ast::AlignofExpr( location, ast::deepCopy( param ) ) );
+				new ast::AlignofExpr( location, ast::deepCopy( param ), ast::AlignofExpr::Alignof ) );
 		}
 	}
