[Scummvm-git-logs] scummvm master -> 72529b6ca0990df240667f1027aec5c7a3078ca0

digitall noreply at scummvm.org
Sat Oct 4 15:29:10 UTC 2025


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

Summary:
72529b6ca0 DEVTOOLS: Fix Further Redundant Declaration in Teenagent Datafile Tool


Commit: 72529b6ca0990df240667f1027aec5c7a3078ca0
    https://github.com/scummvm/scummvm/commit/72529b6ca0990df240667f1027aec5c7a3078ca0
Author: D G Turner (digitall at scummvm.org)
Date: 2025-10-04T16:28:14+01:00

Commit Message:
DEVTOOLS: Fix Further Redundant Declaration in Teenagent Datafile Tool

This would produce GCC Warnings if -Wredundant-decls is enabled.

These are defined in common/textconsole.h which is included.

Changed paths:
    devtools/create_teenagent/util.h


diff --git a/devtools/create_teenagent/util.h b/devtools/create_teenagent/util.h
index 8550dbdb936..680b65cf22f 100644
--- a/devtools/create_teenagent/util.h
+++ b/devtools/create_teenagent/util.h
@@ -31,7 +31,6 @@
 #include <process.h>
 #endif
 
-
 /* File I/O */
 uint8 readByte(FILE *fp);
 uint16 readUint16BE(FILE *fp);
@@ -45,11 +44,6 @@ void writeUint32BE(FILE *fp, uint32 value);
 void writeUint32LE(FILE *fp, uint32 value);
 uint32 fileSize(FILE *fp);
 
-/* Misc stuff */
-void NORETURN_PRE error(const char *s, ...) NORETURN_POST;
-void warning(const char *s, ...);
-void debug(int level, const char *s, ...);
-
 using namespace Common;
 
 #endif




More information about the Scummvm-git-logs mailing list