diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2015-04-22 16:09:02 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2015-04-22 16:09:02 -0400 |
commit | 4d689fc5155458f71912ff11c869d1b2e2e3076e (patch) | |
tree | 184d5fa0e806ec00f5cde237e43db63b86ce0335 /indra/newview/llattachmentsmgr.h | |
parent | d516a8729e413e3097c468e8f3c2c39ff73181bd (diff) |
MAINT-4653 WIP, DRTVWR-397 WIP - log output to file now includes tags. Request max 5 attachments per idle loop to reduce sim-side failures seen when requesting large numbers.
Diffstat (limited to 'indra/newview/llattachmentsmgr.h')
-rwxr-xr-x | indra/newview/llattachmentsmgr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llattachmentsmgr.h b/indra/newview/llattachmentsmgr.h index f9d321398f..d56d6eb27b 100755 --- a/indra/newview/llattachmentsmgr.h +++ b/indra/newview/llattachmentsmgr.h @@ -70,7 +70,7 @@ public: U8 mAttachmentPt; BOOL mAdd; }; - typedef std::vector<AttachmentsInfo> attachments_vec_t; + typedef std::deque<AttachmentsInfo> attachments_vec_t; LLAttachmentsMgr(); virtual ~LLAttachmentsMgr(); @@ -79,7 +79,7 @@ public: const U8 attachment_pt, const BOOL add); void onAttachmentRequested(const LLUUID& item_id); - void requestAttachments(const attachments_vec_t& attachment_requests); + void requestAttachments(attachments_vec_t& attachment_requests); static void onIdle(void *); void onAttachmentArrived(const LLUUID& inv_item_id); |