aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/livingbooks.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mohawk/livingbooks.cpp')
-rw-r--r--engines/mohawk/livingbooks.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/engines/mohawk/livingbooks.cpp b/engines/mohawk/livingbooks.cpp
index 3f53eae4b8..3d22683739 100644
--- a/engines/mohawk/livingbooks.cpp
+++ b/engines/mohawk/livingbooks.cpp
@@ -2690,24 +2690,6 @@ void LBItem::setNextTime(uint16 min, uint16 max, uint32 start) {
debug(9, "nextTime is now %d frames away", _nextTime - (uint)(_vm->_system->getMillis() / 16));
}
-bool LBValue::operator==(const LBValue &x) const {
- if (type != x.type) return false;
-
- switch (type) {
- case kLBValueString:
- return string == x.string;
-
- case kLBValueInteger:
- return integer == x.integer;
- default:
- error("Unknown type when testing for equality");
- }
-}
-
-bool LBValue::operator!=(const LBValue &x) const {
- return !(*this == x);
-}
-
enum LBTokenType {
kLBNoToken,
kLBNameToken,