summaryrefslogtreecommitdiff
path: root/indra/newview/llinventorymodel.h
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2023-04-13 02:20:33 +0300
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2023-04-13 02:20:42 +0300
commit53f2e1710aab77361085fe2c2a41fea87ede0fb8 (patch)
treee22257ceacfe798a29a6c58e106f2c29e0f76322 /indra/newview/llinventorymodel.h
parent37530c9d736d90ec29b97e3567346a02e2826f97 (diff)
SL-19533 Faster declouding
Diffstat (limited to 'indra/newview/llinventorymodel.h')
-rw-r--r--indra/newview/llinventorymodel.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llinventorymodel.h b/indra/newview/llinventorymodel.h
index b506eaac62..db159d480a 100644
--- a/indra/newview/llinventorymodel.h
+++ b/indra/newview/llinventorymodel.h
@@ -580,7 +580,9 @@ private:
U32 mModifyMaskBacklog;
changed_items_t mChangedItemIDsBacklog;
changed_items_t mAddedItemIDsBacklog;
- changed_items_t mPossiblyBrockenLinks;
+ typedef std::map<LLUUID , changed_items_t> broken_links_t;
+ broken_links_t mPossiblyBrockenLinks; // there can be multiple links per item
+ changed_items_t mLinksRebuildList;
boost::signals2::connection mBulkFecthCallbackSlot;