[Scummvm-git-logs] scummvm master -> 1c6a250c5dc8eb3a6a2bf3a6dd8bba40348d0a2c

sev- noreply at scummvm.org
Sat Jul 11 12:04:46 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:
1c6a250c5d COMMON: Added missing override keyword


Commit: 1c6a250c5dc8eb3a6a2bf3a6dd8bba40348d0a2c
    https://github.com/scummvm/scummvm/commit/1c6a250c5dc8eb3a6a2bf3a6dd8bba40348d0a2c
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-07-11T14:04:30+02:00

Commit Message:
COMMON: Added missing override keyword

Changed paths:
    common/compression/installshield_cab.cpp


diff --git a/common/compression/installshield_cab.cpp b/common/compression/installshield_cab.cpp
index 5b160ea149a..d1a43889fcb 100644
--- a/common/compression/installshield_cab.cpp
+++ b/common/compression/installshield_cab.cpp
@@ -100,7 +100,7 @@ public:
 
 	int64 pos() const override { return _parentStream->pos(); }
 	int64 size() const override { return _parentStream->size(); }
-	bool seek(int64 offset, int whence = SEEK_SET) { return _parentStream->seek(offset, whence); }
+	bool seek(int64 offset, int whence = SEEK_SET) override { return _parentStream->seek(offset, whence); }
 
 #define ror8(x,n)   (((x) >> ((int)(n))) | ((x) << (8 - (int)(n))))
 
@@ -331,7 +331,7 @@ bool InstallShieldCabinet::open(const Path *baseName, Common::Archive *archive,
 					if (fileIndex == volumeHeader.lastFileIndex &&
 						entry.compressedSize != headerHeader.lastFileSizeCompressed &&
 						headerHeader.lastFileSizeCompressed != 0) {
-						
+
 						entry.flags |= kSplit;
 					}
 
@@ -435,7 +435,7 @@ SeekableReadStream *InstallShieldCabinet::createReadStreamForMemberHelper(const
 					stream.reset(nullptr);
 				}
 			}
-			
+
 			if (!stream.get()) {
 				warning("Failed to read split file %s", path.toString().c_str());
 				free(src);
@@ -455,7 +455,7 @@ SeekableReadStream *InstallShieldCabinet::createReadStreamForMemberHelper(const
 		} else {
 			// File split, return the assembled data
 			return new MemoryReadStream(src, entry.uncompressedSize, DisposeAfterUse::YES);
-		}		
+		}
 	}
 
 	byte *dst = (byte *)malloc(entry.uncompressedSize);




More information about the Scummvm-git-logs mailing list