diff options
author | richiesams | 2013-07-24 11:36:53 -0500 |
---|---|---|
committer | richiesams | 2013-08-04 13:32:36 -0500 |
commit | 73f02759f914327732bac2f1a750f3a95efe17ce (patch) | |
tree | 15e51d747ac4bd0eb64eb4e4468e2b14d632fc0e | |
parent | 88934cd5d01c20c4add55c81277923f481674176 (diff) | |
download | scummvm-rg350-73f02759f914327732bac2f1a750f3a95efe17ce.tar.gz scummvm-rg350-73f02759f914327732bac2f1a750f3a95efe17ce.tar.bz2 scummvm-rg350-73f02759f914327732bac2f1a750f3a95efe17ce.zip |
ZVISION: Remove supurflouous 'const' and add 'inline'
-rw-r--r-- | engines/zvision/puzzle.h | 2 |
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; } }; |