[Scummvm-git-logs] scummvm master -> 12c80f6fc31125fe9759e71ff7b80bc5360f1a11

lephilousophe noreply at scummvm.org
Sat Sep 14 11:40:53 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:
12c80f6fc3 TWINE: Fix build for RiscOS


Commit: 12c80f6fc31125fe9759e71ff7b80bc5360f1a11
    https://github.com/scummvm/scummvm/commit/12c80f6fc31125fe9759e71ff7b80bc5360f1a11
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2024-09-14T13:40:37+02:00

Commit Message:
TWINE: Fix build for RiscOS

GCC 4.7 seems to have a bug when a default constructor is used in base
and derived classes.
As an empty destructor and a default one are (almost) the same, use the
former one.

Changed paths:
    engines/twine/holomap.h


diff --git a/engines/twine/holomap.h b/engines/twine/holomap.h
index 51aabf75080..ba05df85052 100644
--- a/engines/twine/holomap.h
+++ b/engines/twine/holomap.h
@@ -51,7 +51,7 @@ protected:
 	TwinEEngine *_engine;
 public:
 	Holomap(TwinEEngine *engine) : _engine(engine) {}
-	virtual ~Holomap() = default;
+	virtual ~Holomap() {}
 
 	/**
 	 * Set Holomap location position




More information about the Scummvm-git-logs mailing list