mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-03 16:09:32 +00:00
ZVISION: Remove supurflouous 'const' and add 'inline'
This commit is contained in:
parent
88934cd5d0
commit
73f02759f9
@ -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;
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user