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

dwatteau noreply at scummvm.org
Wed Jul 15 11:50:04 UTC 2026


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:
fa074adae0 GAMOS: Silence GCC pedantic warning about "extra `;`"


Commit: fa074adae0700258a80b2290e5ec24fb0789e7d5
    https://github.com/scummvm/scummvm/commit/fa074adae0700258a80b2290e5ec24fb0789e7d5
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2026-07-15T13:48:33+02:00

Commit Message:
GAMOS: Silence GCC pedantic warning about "extra `;`"

e.g. with GCC 7.5.0.

Changed paths:
    engines/gamos/file.cpp
    engines/gamos/video.cpp


diff --git a/engines/gamos/file.cpp b/engines/gamos/file.cpp
index c91b49c3a07..b1858ad0395 100644
--- a/engines/gamos/file.cpp
+++ b/engines/gamos/file.cpp
@@ -24,10 +24,10 @@
 namespace Gamos {
 
 GameFile::GameFile() {
-};
+}
 
 GameFile::~GameFile() {
-};
+}
 
 bool GameFile::open(const Common::Path &name) {
 	bool res = File::open(name);
diff --git a/engines/gamos/video.cpp b/engines/gamos/video.cpp
index 1a9c4436b3f..d64139e0be1 100644
--- a/engines/gamos/video.cpp
+++ b/engines/gamos/video.cpp
@@ -159,4 +159,4 @@ void GamosEngine::playVideo(const Common::String &video, const Common::Point &po
     }
 }
 
-};
+}




More information about the Scummvm-git-logs mailing list