diff options
author | Richard Nelson <richard@lindenlab.com> | 2011-08-10 10:52:56 -0700 |
---|---|---|
committer | Richard Nelson <richard@lindenlab.com> | 2011-08-10 10:52:56 -0700 |
commit | 11005a9d917dde208fc0917bb84701d09e1a395e (patch) | |
tree | 376dfff5540203d1353c9bdc8c3823019dca3dd0 /indra/newview | |
parent | f5886bfaff0385acf0a55bc1b8678330ae89442a (diff) |
added fast timers to profile inventory LLSD deserialization
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llfolderview.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llfolderview.cpp b/indra/newview/llfolderview.cpp index 02be477e0d..f471caa65c 100644 --- a/indra/newview/llfolderview.cpp +++ b/indra/newview/llfolderview.cpp @@ -2040,8 +2040,10 @@ void LLFolderView::removeItemID(const LLUUID& id) mItemMap.erase(id); } +LLFastTimer::DeclareTimer FTM_GET_ITEM_BY_ID("Get FolderViewItem by ID"); LLFolderViewItem* LLFolderView::getItemByID(const LLUUID& id) { + LLFastTimer _(FTM_GET_ITEM_BY_ID); if (id == getListener()->getUUID()) { return this; |