From fa056470688fef96e9caeb3731487c357a1b49bf Mon Sep 17 00:00:00 2001 From: Aleric Inglewood Date: Wed, 27 Mar 2013 00:56:28 +0100 Subject: [PATCH] Compile fix --- indra/llcommon/lldarray.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/llcommon/lldarray.h b/indra/llcommon/lldarray.h index 293695411..b6834796b 100644 --- a/indra/llcommon/lldarray.h +++ b/indra/llcommon/lldarray.h @@ -153,7 +153,7 @@ inline S32 LLDynamicArray::put(const Type &obj) template inline void LLDynamicArray::operator+=(const LLDynamicArray &other) { - insert(this->end(), other.begin(), other.end()); + this->insert(this->end(), other.begin(), other.end()); } //--------------------------------------------------------