diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2009-09-12 09:11:32 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2009-09-12 09:11:32 -0400 |
commit | 689af4b32948e2d2a07b60adcc318668c4d55585 (patch) | |
tree | 86fb5dd1cb0b280e86dae39e5dcb4f289a5025b8 /indra/llui/llfloater.h | |
parent | d40d745cba1de0df4ada7d4d2cf9f1632279ae12 (diff) |
DEV-38598: remove dangerous compare-LLSD-less-than operation
Diffstat (limited to 'indra/llui/llfloater.h')
-rw-r--r-- | indra/llui/llfloater.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llui/llfloater.h b/indra/llui/llfloater.h index ee066317e0..cace13939f 100644 --- a/indra/llui/llfloater.h +++ b/indra/llui/llfloater.h @@ -87,12 +87,14 @@ friend class LLMultiFloater; public: struct KeyCompare { - static bool compare(const LLSD& a, const LLSD& b); +// static bool compare(const LLSD& a, const LLSD& b); static bool equate(const LLSD& a, const LLSD& b); +/*==========================================================================*| bool operator()(const LLSD& a, const LLSD& b) const { return compare(a, b); } +|*==========================================================================*/ }; enum EFloaterButtons |