diff options
author | Rider Linden <rider@lindenlab.com> | 2015-09-28 17:06:53 -0700 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2015-09-28 17:06:53 -0700 |
commit | 83836d91178235e5c188020ac57c9a296343e83b (patch) | |
tree | 7d78228fe71615712fa2e5c133b6bc89609c02db /indra/newview/llaccountingcostmanager.h | |
parent | cf6c07927d70db9976d2c47bb21552ba9b38c9b0 (diff) |
MAINT-5676: Cleaned up the way we were keeping track of outstanding object cost requests.
MAINT-5626: Fixed a typo/transcription error/fat finger mistake where I was missing the report of the land impact of selected objects.
Diffstat (limited to 'indra/newview/llaccountingcostmanager.h')
-rwxr-xr-x | indra/newview/llaccountingcostmanager.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/indra/newview/llaccountingcostmanager.h b/indra/newview/llaccountingcostmanager.h index d5a94f6fda..f251ceffd4 100755 --- a/indra/newview/llaccountingcostmanager.h +++ b/indra/newview/llaccountingcostmanager.h @@ -71,16 +71,13 @@ public: private: //Set of objects that will be used to generate a cost - std::set<LLUUID> mObjectList; + uuid_set_t mObjectList; //During fetchCosts we move object into a the pending set to signify that //a fetch has been instigated. - std::set<LLUUID> mPendingObjectQuota; - typedef std::set<LLUUID>::iterator IDIt; + uuid_set_t mPendingObjectQuota; void accountingCostCoro(std::string url, eSelectionType selectionType, const LLHandle<LLAccountingCostObserver> observerHandle); - LLCore::HttpRequest::ptr_t mHttpRequest; - LLCore::HttpRequest::policy_t mHttpPolicy; }; //=============================================================================== |