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

digitall noreply at scummvm.org
Fri May 17 21:15:25 UTC 2024


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:
b29a26f00e DIRECTOR: Fix GCC Compiler Shadowing Warnings


Commit: b29a26f00e8325386ec0f8e89c12c78abbe6db9b
    https://github.com/scummvm/scummvm/commit/b29a26f00e8325386ec0f8e89c12c78abbe6db9b
Author: D G Turner (digitall at scummvm.org)
Date: 2024-05-17T22:15:01+01:00

Commit Message:
DIRECTOR: Fix GCC Compiler Shadowing Warnings

Changed paths:
    engines/director/lingo/lingodec/ast.h


diff --git a/engines/director/lingo/lingodec/ast.h b/engines/director/lingo/lingodec/ast.h
index 1a0e334ce8a..5e15e55f1f8 100644
--- a/engines/director/lingo/lingodec/ast.h
+++ b/engines/director/lingo/lingodec/ast.h
@@ -403,8 +403,8 @@ struct RepeatWithToStmtNode : LoopNode {
 	Common::SharedPtr<Node> end;
 	Common::SharedPtr<BlockNode> block;
 
-	RepeatWithToStmtNode(uint32 startIndex_, Common::String v, Common::SharedPtr<Node> s, bool up, Common::SharedPtr<Node> e, uint32 offset)
-		: LoopNode(kRepeatWithToStmtNode, startIndex_, offset), up(up) {
+	RepeatWithToStmtNode(uint32 startIndex_, Common::String v, Common::SharedPtr<Node> s, bool _up, Common::SharedPtr<Node> e, uint32 offset)
+		: LoopNode(kRepeatWithToStmtNode, startIndex_, offset), up(_up) {
 		varName = v;
 		start = Common::move(s);
 		start->parent = this;




More information about the Scummvm-git-logs mailing list