Index: src/Parser/ExpressionNode.cc
===================================================================
--- src/Parser/ExpressionNode.cc	(revision 4b60b28a509465482462d1373480a66293905b1a)
+++ src/Parser/ExpressionNode.cc	(revision 1c80f20f755bb236dd5a5cddd492b72164fede40)
@@ -10,6 +10,6 @@
 // Created On       : Sat May 16 13:17:07 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon Jan 16 15:52:05 2023
-// Update Count     : 1078
+// Last Modified On : Sat Feb 11 14:49:00 2023
+// Update Count     : 1079
 //
 
@@ -592,5 +592,5 @@
 Expression * build_unary_ptr( OperKinds op, ExpressionNode * expr_node ) {
 	list< Expression * > args;
-	args.push_back(  maybeMoveBuild< Expression >(expr_node) ); // xxx -- this is exactly the same as the val case now, refactor this code.
+	args.push_back( maybeMoveBuild< Expression >(expr_node) ); // xxx -- this is exactly the same as the val case now, refactor this code.
 	return new UntypedExpr( new NameExpr( OperName[ (int)op ] ), args );
 } // build_unary_ptr
Index: src/Parser/parser.yy
===================================================================
--- src/Parser/parser.yy	(revision 4b60b28a509465482462d1373480a66293905b1a)
+++ src/Parser/parser.yy	(revision 1c80f20f755bb236dd5a5cddd492b72164fede40)
@@ -10,6 +10,6 @@
 // Created On       : Sat Sep  1 20:22:55 2001
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Feb  2 21:36:16 2023
-// Update Count     : 5865
+// Last Modified On : Tue Feb 14 21:11:39 2023
+// Update Count     : 5893
 //
 
@@ -55,5 +55,5 @@
 #include "Common/utility.h"								// for maybeMoveBuild, maybeBuild, CodeLo...
 
-#include "SynTree/Attribute.h"     // for Attribute
+#include "SynTree/Attribute.h"							// for Attribute
 
 // lex uses __null in a boolean context, it's fine.
@@ -1951,5 +1951,5 @@
 		{
 			typedefTable.addToEnclosingScope( *$4->name, TYPEDEFname, "6" );
-			$$ = $4->addType( $3 )->addQualifiers( $1 )->addTypedef();
+			$$ = $4->addQualifiers( $1 )->addType( $3 )->addTypedef();
 		}
 	| type_specifier TYPEDEF declarator
@@ -1961,5 +1961,5 @@
 		{
 			typedefTable.addToEnclosingScope( *$4->name, TYPEDEFname, "8" );
-			$$ = $4->addQualifiers( $1 )->addTypedef()->addType( $1 );
+			$$ = $4->addQualifiers( $1 )->addType( $1 )->addTypedef();
 		}
 	;
