diff options
Diffstat (limited to 'indra/llappearance')
| -rw-r--r-- | indra/llappearance/llavatarappearance.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/llappearance/llavatarappearance.h b/indra/llappearance/llavatarappearance.h index 13e504e639..99bc5eeef5 100644 --- a/indra/llappearance/llavatarappearance.h +++ b/indra/llappearance/llavatarappearance.h @@ -138,7 +138,7 @@ public:      LLVector3           mHeadOffset{}; // current head position      LLAvatarJoint*      mRoot{ nullptr }; -    typedef std::map<std::string, LLJoint*> joint_map_t; +    typedef std::map<std::string, LLJoint*, std::less<>> joint_map_t;      joint_map_t         mJointMap;      typedef std::map<std::string, LLVector3> joint_state_map_t; @@ -151,7 +151,7 @@ public:  public:      typedef std::vector<LLAvatarJoint*> avatar_joint_list_t;      const avatar_joint_list_t& getSkeleton() { return mSkeleton; } -    typedef std::map<std::string, std::string> joint_alias_map_t; +    typedef std::map<std::string, std::string, std::less<>> joint_alias_map_t;      const joint_alias_map_t& getJointAliases(); | 
