[Scummvm-git-logs] scummvm master -> d5eea395bb371e88032eb77b99fb1222cf92df89

digitall noreply at scummvm.org
Sun May 21 10:46:22 UTC 2023


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
d5eea395bb DIRECTOR: Restore Redundant Declaration Warning Fix in Grammar Parser Code


Commit: d5eea395bb371e88032eb77b99fb1222cf92df89
    https://github.com/scummvm/scummvm/commit/d5eea395bb371e88032eb77b99fb1222cf92df89
Author: D G Turner (digitall at scummvm.org)
Date: 2023-05-21T11:45:27+01:00

Commit Message:
DIRECTOR: Restore Redundant Declaration Warning Fix in Grammar Parser Code

This is emitted by GCC if -Wredundant-decls is passed.

The Bison source files to generate this header should be modified to
fix this, but I am unclear on the required workflow.

Changed paths:
    engines/director/lingo/lingo-gr.h


diff --git a/engines/director/lingo/lingo-gr.h b/engines/director/lingo/lingo-gr.h
index 3e37d468e29..baa6a5acf19 100644
--- a/engines/director/lingo/lingo-gr.h
+++ b/engines/director/lingo/lingo-gr.h
@@ -177,7 +177,7 @@ typedef union YYSTYPE YYSTYPE;
 extern YYSTYPE yylval;
 
 
-int yyparse (void);
+//int yyparse (void);
 
 
 #endif /* !YY_YY_ENGINES_DIRECTOR_LINGO_LINGO_GR_H_INCLUDED  */




More information about the Scummvm-git-logs mailing list