aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llptrskipmap.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/llcommon/llptrskipmap.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/linden/indra/llcommon/llptrskipmap.h b/linden/indra/llcommon/llptrskipmap.h
index b369d77..8592197 100644
--- a/linden/indra/llcommon/llptrskipmap.h
+++ b/linden/indra/llcommon/llptrskipmap.h
@@ -238,7 +238,8 @@ private:
238template <class INDEX_T, class DATA_T, S32 BINARY_DEPTH> 238template <class INDEX_T, class DATA_T, S32 BINARY_DEPTH>
239inline LLPtrSkipMap<INDEX_T, DATA_T, BINARY_DEPTH>::LLPtrSkipMap() 239inline LLPtrSkipMap<INDEX_T, DATA_T, BINARY_DEPTH>::LLPtrSkipMap()
240 : mInsertFirst(NULL), 240 : mInsertFirst(NULL),
241 mEquals(defaultEquals) 241 mEquals(defaultEquals),
242 mNumberOfSteps(0)
242{ 243{
243 if (BINARY_DEPTH < 2) 244 if (BINARY_DEPTH < 2)
244 { 245 {
@@ -259,7 +260,8 @@ template <class INDEX_T, class DATA_T, S32 BINARY_DEPTH>
259inline LLPtrSkipMap<INDEX_T, DATA_T, BINARY_DEPTH>::LLPtrSkipMap(insert_func insert_first, 260inline LLPtrSkipMap<INDEX_T, DATA_T, BINARY_DEPTH>::LLPtrSkipMap(insert_func insert_first,
260 equals_func equals) 261 equals_func equals)
261: mInsertFirst(insert_first), 262: mInsertFirst(insert_first),
262 mEquals(equals) 263 mEquals(equals),
264 mNumberOfSteps(0)
263{ 265{
264 if (BINARY_DEPTH < 2) 266 if (BINARY_DEPTH < 2)
265 { 267 {