Index: src/Parser/parser.yy
===================================================================
--- src/Parser/parser.yy	(revision be00a2d9e670bda1735912e13a549e62a6107cc7)
+++ src/Parser/parser.yy	(revision 8603c103d67729d4e4cec233b1b6f1f2a5e89d90)
@@ -10,6 +10,6 @@
 // Created On       : Sat Sep  1 20:22:55 2001
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sat Feb 25 09:52:06 2023
-// Update Count     : 5986
+// Last Modified On : Sat Feb 25 13:23:16 2023
+// Update Count     : 5989
 //
 
@@ -1280,5 +1280,5 @@
 		{
 			$$ = new StatementNode( build_while( new CondCtl( nullptr, NEW_ONE ), maybe_build_compound( $4 ) ) );
-			SemanticWarning( yylloc, Warning::SuperfluousElse, "" );
+			SemanticWarning( yylloc, Warning::SuperfluousElse );
 		}
 	| WHILE '(' conditional_declaration ')' statement	%prec THEN
@@ -1291,5 +1291,5 @@
 		{
 			$$ = new StatementNode( build_do_while( NEW_ONE, maybe_build_compound( $2 ) ) );
-			SemanticWarning( yylloc, Warning::SuperfluousElse, "" );
+			SemanticWarning( yylloc, Warning::SuperfluousElse );
 		}
 	| DO statement WHILE '(' comma_expression ')' ';'
@@ -1302,5 +1302,5 @@
 		{
 			$$ = new StatementNode( build_for( new ForCtrl( (ExpressionNode * )nullptr, (ExpressionNode * )nullptr, (ExpressionNode * )nullptr ), maybe_build_compound( $4 ) ) );
-			SemanticWarning( yylloc, Warning::SuperfluousElse, "" );
+			SemanticWarning( yylloc, Warning::SuperfluousElse );
 		}
 	| FOR '(' for_control_expression_list ')' statement	%prec THEN
@@ -2990,5 +2990,5 @@
 	TRAIT identifier_or_type_name '(' type_parameter_list ')' '{' '}'
 		{
-			SemanticWarning( yylloc, Warning::DeprecTraitSyntax, "" );
+			SemanticWarning( yylloc, Warning::DeprecTraitSyntax );
 			$$ = DeclarationNode::newTrait( $2, $4, nullptr );
 		}
@@ -2997,5 +2997,5 @@
 	| TRAIT identifier_or_type_name '(' type_parameter_list ')' '{' push trait_declaration_list pop '}'
 		{
-			SemanticWarning( yylloc, Warning::DeprecTraitSyntax, "" );
+			SemanticWarning( yylloc, Warning::DeprecTraitSyntax );
 			$$ = DeclarationNode::newTrait( $2, $4, $8 );
 		}
