summaryrefslogtreecommitdiff
path: root/indra/llcommon/llsdutil.h
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2009-05-26 22:36:38 +0000
committerNat Goodspeed <nat@lindenlab.com>2009-05-26 22:36:38 +0000
commita81c084debb4075f36bacd59cbe332c2f0548d50 (patch)
tree2608e6f40aaf2323ffc961d306b1e3b027732d71 /indra/llcommon/llsdutil.h
parent01d390825a5d9ba37715b80cd0aa7aede022dcec (diff)
Add llsd_equals(), a function whose absence sorely puzzles me
Diffstat (limited to 'indra/llcommon/llsdutil.h')
-rw-r--r--indra/llcommon/llsdutil.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/llcommon/llsdutil.h b/indra/llcommon/llsdutil.h
index a4175be450..31d219da52 100644
--- a/indra/llcommon/llsdutil.h
+++ b/indra/llcommon/llsdutil.h
@@ -129,6 +129,9 @@ LL_COMMON_API BOOL compare_llsd_with_template(
*/
LL_COMMON_API std::string llsd_matches(const LLSD& prototype, const LLSD& data, const std::string& pfx="");
+/// Deep equality
+bool llsd_equals(const LLSD& lhs, const LLSD& rhs);
+
// Simple function to copy data out of input & output iterators if
// there is no need for casting.
template<typename Input> LLSD llsd_copy_array(Input iter, Input end)