[Scummvm-git-logs] scummvm master -> 8eeabab03405a331b52bed1a51fda42f28a0d7fa

digitall noreply at scummvm.org
Tue Jun 4 00:09:08 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:
8eeabab034 COMMON: Remove Stray Semicolon From Common Archive Class


Commit: 8eeabab03405a331b52bed1a51fda42f28a0d7fa
    https://github.com/scummvm/scummvm/commit/8eeabab03405a331b52bed1a51fda42f28a0d7fa
Author: D G Turner (digitall at scummvm.org)
Date: 2024-06-04T01:08:17+01:00

Commit Message:
COMMON: Remove Stray Semicolon From Common Archive Class

This causes a warning if -Wpedantic is passed to GCC.

Changed paths:
    common/archive.cpp


diff --git a/common/archive.cpp b/common/archive.cpp
index f47427e5511..0c74d3b809c 100644
--- a/common/archive.cpp
+++ b/common/archive.cpp
@@ -252,7 +252,7 @@ bool MemcachingCaseInsensitiveArchive::CacheKey_EqualTo::operator()(const CacheK
 
 uint MemcachingCaseInsensitiveArchive::CacheKey_Hash::operator()(const CacheKey &x) const {
 	return static_cast<uint>(x.path.hashIgnoreCase() * 1000003u) ^ static_cast<uint>(x.altStreamType);
-};
+}
 
 SearchSet::ArchiveNodeList::iterator SearchSet::find(const String &name) {
 	ArchiveNodeList::iterator it = _list.begin();




More information about the Scummvm-git-logs mailing list