[Scummvm-git-logs] scummvm master -> 31a194b3ca75c65becdab37bda784891000395d0
digitall
noreply at scummvm.org
Mon Jan 30 22:28:44 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:
31a194b3ca DIRECTOR: Restore Redundant Declaration Warning Fix in Grammar Parser Code
Commit: 31a194b3ca75c65becdab37bda784891000395d0
https://github.com/scummvm/scummvm/commit/31a194b3ca75c65becdab37bda784891000395d0
Author: D G Turner (digitall at scummvm.org)
Date: 2023-01-30T22:26:06Z
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 4ea86b5abf3..19ce840f765 100644
--- a/engines/director/lingo/lingo-gr.h
+++ b/engines/director/lingo/lingo-gr.h
@@ -175,7 +175,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