[Scummvm-git-logs] scummvm master -> 27fd68cf205853089dfcafb1b0db0c30f7655e0a
digitall
noreply at scummvm.org
Sat Jul 23 12:32:57 UTC 2022
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:
27fd68cf20 MTROPOLIS: Remove Stray Semicolon Causing Compiler Warning
Commit: 27fd68cf205853089dfcafb1b0db0c30f7655e0a
https://github.com/scummvm/scummvm/commit/27fd68cf205853089dfcafb1b0db0c30f7655e0a
Author: D G Turner (digitall at scummvm.org)
Date: 2022-07-23T13:32:00+01:00
Commit Message:
MTROPOLIS: Remove Stray Semicolon Causing Compiler Warning
This generates a warning when -Wpedantic is passed to GCC.
Changed paths:
engines/mtropolis/data.cpp
diff --git a/engines/mtropolis/data.cpp b/engines/mtropolis/data.cpp
index f45b7ed272f..d79dd665a4a 100644
--- a/engines/mtropolis/data.cpp
+++ b/engines/mtropolis/data.cpp
@@ -962,7 +962,7 @@ ProjectCatalog::StreamDesc::StreamDesc()
}
ProjectCatalog::SegmentDesc::SegmentDesc() : segmentID(0) {
-};
+}
ProjectCatalog::ProjectCatalog() : persistFlags(0), sizeOfStreamAndSegmentDescs(0), unknown1(0), unknown2(0), unknown3(0) {
}
More information about the Scummvm-git-logs
mailing list