Small GCC fix.

This commit is contained in:
Shyotl
2012-06-11 07:18:05 -05:00
parent a399580c84
commit 0286c8bf55

View File

@@ -842,7 +842,7 @@ void SHClientTagMgr::updateAvatarTag(LLVOAvatar* pAvatar)
std::map<LLUUID, LLSD>::iterator it = mAvatarTags.find(id);
LLSD new_tag = generateClientTag(pAvatar);
LLSD& old_tag = (it != mAvatarTags.end()) ? it->second : LLSD();
LLSD old_tag = (it != mAvatarTags.end()) ? it->second : LLSD();
bool dirty = old_tag.size() != new_tag.size() || !llsd_equals(new_tag,old_tag);
if(dirty)