summaryrefslogtreecommitdiff
path: root/indra/newview/llwearable.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llwearable.h')
-rw-r--r--indra/newview/llwearable.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/indra/newview/llwearable.h b/indra/newview/llwearable.h
index cd02843ccf..1b0fb3d7aa 100644
--- a/indra/newview/llwearable.h
+++ b/indra/newview/llwearable.h
@@ -33,7 +33,6 @@
#define LL_LLWEARABLE_H
#include "lluuid.h"
-#include "llptrskipmap.h"
#include "llstring.h"
#include "llpermissions.h"
#include "llsaleinfo.h"
@@ -132,8 +131,10 @@ private:
LLTransactionID mTransactionID;
EWearableType mType;
- LLPtrSkipMap<S32, F32*> mVisualParamMap; // maps visual param id to weight
- LLPtrSkipMap<S32, LLUUID*> mTEMap; // maps TE to Image ID
+ typedef std::map<S32, F32> param_map_t;
+ param_map_t mVisualParamMap; // maps visual param id to weight
+ typedef std::map<S32, LLUUID> te_map_t;
+ te_map_t mTEMap; // maps TE to Image ID
static const char* sTypeName[ WT_COUNT ];
static const char* sTypeLabel[ WT_COUNT ];