[Scummvm-git-logs] scummvm master -> e16cc61b373ad89bbdfe3aa592dfd15e695a180d
scemino
noreply at scummvm.org
Sun Apr 14 17:40:26 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:
e16cc61b37 TWP: Add missing final on BreakWhileCond
Commit: e16cc61b373ad89bbdfe3aa592dfd15e695a180d
https://github.com/scummvm/scummvm/commit/e16cc61b373ad89bbdfe3aa592dfd15e695a180d
Author: scemino (scemino74 at gmail.com)
Date: 2024-04-14T19:40:11+02:00
Commit Message:
TWP: Add missing final on BreakWhileCond
Changed paths:
engines/twp/task.h
diff --git a/engines/twp/task.h b/engines/twp/task.h
index 7b589efda85..832aedbe104 100644
--- a/engines/twp/task.h
+++ b/engines/twp/task.h
@@ -38,7 +38,7 @@ public:
typedef bool Predicate();
template<typename Predicate>
-class BreakWhileCond : public Task {
+class BreakWhileCond final : public Task {
public:
BreakWhileCond(int parentId, const Common::String &name, Predicate cond)
: _parentId(parentId),
More information about the Scummvm-git-logs
mailing list