GRIM: Silence compiler warning

This commit is contained in:
Pawel Kolodziejski
2020-09-20 21:53:19 +02:00
parent 2b437ef90e
commit 830bb70df6
2 changed files with 3 additions and 0 deletions
+2
View File
@@ -156,6 +156,7 @@ Registry::Value &Registry::value(const Common::String &key) {
}
assert(0);
return _dummy; // Silence warning
}
const Registry::Value &Registry::value(const Common::String &key) const {
@@ -194,6 +195,7 @@ const Registry::Value &Registry::value(const Common::String &key) const {
}
assert(0);
return _dummy; // Silence warning
}
const Common::String &Registry::getString(const Common::String &key) const {
+1
View File
@@ -93,6 +93,7 @@ private:
Value _joystick;
Value _spewOnError;
Value _transcript;
Value _dummy;
bool _dirty;