Index: src/Parser/StatementNode.cpp
===================================================================
--- src/Parser/StatementNode.cpp	(revision 8236f00e7c536ffa44a7ba09aa5090d95344124a)
+++ src/Parser/StatementNode.cpp	(revision 9f385e40636d47dee87cdd79dd83bebf285bbb0a)
@@ -11,6 +11,6 @@
 // Created On       : Sat May 16 14:59:41 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Feb  6 11:38:39 2025
-// Update Count     : 434
+// Last Modified On : Sat Apr 19 13:01:31 2025
+// Update Count     : 436
 //
 
@@ -119,6 +119,5 @@
 } // build_expr
 
-static ast::Expr * build_if_control( CondCtrl * ctrl,
-		std::vector<ast::ptr<ast::Stmt>> & inits ) {
+static ast::Expr * build_if_control( CondCtrl * ctrl, std::vector<ast::ptr<ast::Stmt>> & inits ) {
 	assert( inits.empty() );
 	if ( nullptr != ctrl->init ) {
@@ -149,7 +148,5 @@
 	ast::Stmt const * astelse = buildMoveOptional( else_ );
 
-	return new ast::IfStmt( location, astcond, astthen, astelse,
-		std::move( astinit )
-	);
+	return new ast::IfStmt( location, astcond, astthen, astelse, std::move( astinit ) );
 } // build_if
 
@@ -193,11 +190,6 @@
 	ast::Expr * astcond = build_if_control( ctrl, astinit ); // ctrl deleted, cond/init set
 
-	return new ast::WhileDoStmt( location,
-		astcond,
-		buildMoveSingle( stmt ),
-		buildMoveOptional( else_ ),
-		std::move( astinit ),
-		ast::While
-	);
+	return new ast::WhileDoStmt( location, astcond, buildMoveSingle( stmt ), buildMoveOptional( else_ ),
+								 std::move( astinit ), ast::While );
 } // build_while
 
