diff options
author | Richard Linden <none@none> | 2013-10-17 14:48:01 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-10-17 14:48:01 -0700 |
commit | ec178690240a56ffa43b8f37c6b581c9008d3d7d (patch) | |
tree | b2b925b7beae608d56c2e969024359735fd4d332 /indra/newview | |
parent | 92c4677a840417546e95b474a4f78ca8d86fc5ba (diff) |
BUILDFIX: bad typedef
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/llviewerstats.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewerstats.cpp b/indra/newview/llviewerstats.cpp index c81a9a0ad3..b5aa052a90 100755 --- a/indra/newview/llviewerstats.cpp +++ b/indra/newview/llviewerstats.cpp @@ -343,7 +343,7 @@ void update_statistics() sample(LLStatViewer::DRAW_DISTANCE, (F64)gSavedSettings.getF32("RenderFarClip")); sample(LLStatViewer::CHAT_BUBBLES, gSavedSettings.getBOOL("UseChatBubbles")); - typedef LLInstanceTracker<LLTrace::StatType<LLTrace::TimeBlockAccumulator>, std::string> stat_type_t; + typedef LLTrace::StatType<LLTrace::TimeBlockAccumulator>::instance_tracker_t stat_type_t; F64Seconds idle_secs = last_frame_recording.getSum(*stat_type_t::getInstance("Idle")); F64Seconds network_secs = last_frame_recording.getSum(*stat_type_t::getInstance("Network")); |