summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
Diffstat (limited to 'indra')
-rw-r--r--indra/llcommon/llsd.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llcommon/llsd.h b/indra/llcommon/llsd.h
index f034470da7..09aac47d0d 100644
--- a/indra/llcommon/llsd.h
+++ b/indra/llcommon/llsd.h
@@ -320,6 +320,8 @@ public:
// overload to disambiguate [0], [1] et al.
const LLSD& operator[](Integer i) const { return (*this)[size_t(i)]; }
LLSD& operator[](Integer i) { return (*this)[size_t(i)]; }
+ const LLSD& operator[](U32 i) const { return (*this)[size_t(i)]; }
+ LLSD& operator[](U32 i) { return (*this)[size_t(i)]; }
//@}
/** @name Iterators */