From 0b6aebb53f337c0f35ff7c07ddd8878149bdb3a6 Mon Sep 17 00:00:00 2001 From: Kitty Barnett <develop@catznip.com> Date: Sat, 18 Sep 2010 09:12:09 +0200 Subject: [PATCH] - fixed : silly GCC compiler warning --HG-- branch : RLVa --- indra/newview/rlvhelper.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/indra/newview/rlvhelper.cpp b/indra/newview/rlvhelper.cpp index 0facf608f6..5841b50fbb 100644 --- a/indra/newview/rlvhelper.cpp +++ b/indra/newview/rlvhelper.cpp @@ -839,7 +839,8 @@ void RlvForceWear::done() // If there are additions we need to call LLAppearanceManager::updateCOF(), otherwise LLAppearanceManager::updateAppearanceFromCOF() if ( (!addBodyParts.empty()) || (!addClothing.empty()) || (!m_addGestures.empty()) ) { - pAppearanceMgr->updateCOF(addBodyParts, addClothing, LLInventoryModel::item_array_t(), m_addGestures, true); + LLInventoryModel::item_array_t addAttachments; + pAppearanceMgr->updateCOF(addBodyParts, addClothing, addAttachments, m_addGestures, true); m_addGestures.clear(); } -- GitLab