ZVISION: Remove supurflouous 'const' and add 'inline'

This commit is contained in:
richiesams 2013-07-24 11:36:53 -05:00
parent 88934cd5d0
commit 73f02759f9

View File

@ -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;
}
};