aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision
diff options
context:
space:
mode:
authorrichiesams2013-07-24 11:36:53 -0500
committerrichiesams2013-08-04 13:32:36 -0500
commit73f02759f914327732bac2f1a750f3a95efe17ce (patch)
tree15e51d747ac4bd0eb64eb4e4468e2b14d632fc0e /engines/zvision
parent88934cd5d01c20c4add55c81277923f481674176 (diff)
downloadscummvm-rg350-73f02759f914327732bac2f1a750f3a95efe17ce.tar.gz
scummvm-rg350-73f02759f914327732bac2f1a750f3a95efe17ce.tar.bz2
scummvm-rg350-73f02759f914327732bac2f1a750f3a95efe17ce.zip
ZVISION: Remove supurflouous 'const' and add 'inline'
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;
}
};