aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision
diff options
context:
space:
mode:
Diffstat (limited to 'engines/zvision')
-rw-r--r--engines/zvision/puzzle.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/zvision/puzzle.h b/engines/zvision/puzzle.h
index b3831d4665..06c228d367 100644
--- a/engines/zvision/puzzle.h
+++ b/engines/zvision/puzzle.h
@@ -68,7 +68,7 @@ struct Puzzle {
// Used by the ScriptManager to allow unique-ification of _referenceTable
// The unique-ification is done by sorting, then iterating and removing duplicates
// The sort uses operator<
- const bool operator<(const Puzzle &other) const {
+ inline bool operator<(const Puzzle &other) const {
return key < other.key;
}
};