[Scummvm-git-logs] scummvm master -> a00cea8e2cf88edead5f1515905b19ce94066248
fracturehill
76959842+fracturehill at users.noreply.github.com
Wed Mar 24 19:25:36 UTC 2021
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:
a00cea8e2c NANCY: Replace default destructor in State
Commit: a00cea8e2cf88edead5f1515905b19ce94066248
https://github.com/scummvm/scummvm/commit/a00cea8e2cf88edead5f1515905b19ce94066248
Author: fracturehill (strahy at outlook.com)
Date: 2021-03-24T21:25:04+02:00
Commit Message:
NANCY: Replace default destructor in State
Replaced the defaulted destructor in State::State with empty braces since the default was getting marked as noexcept and was causing build errors.
Changed paths:
engines/nancy/state/state.h
diff --git a/engines/nancy/state/state.h b/engines/nancy/state/state.h
index 0eafe1152b..a70fcae0cf 100644
--- a/engines/nancy/state/state.h
+++ b/engines/nancy/state/state.h
@@ -32,7 +32,7 @@ namespace State {
class State {
public:
State() {}
- virtual ~State() = default;
+ virtual ~State() {};
virtual void process() = 0;
virtual void onStateEnter() {}
More information about the Scummvm-git-logs
mailing list