diff options
| author | Richard Linden <none@none> | 2013-03-25 20:21:04 -0700 | 
|---|---|---|
| committer | Richard Linden <none@none> | 2013-03-25 20:21:04 -0700 | 
| commit | cd46f3d08cef6f43c29447e36c920d10ec184a18 (patch) | |
| tree | 302145b82aba59c81960ca0eb55aa2f084f18e53 | |
| parent | 0ddeaa196731299e443d96e9f2797d8247c0de97 (diff) | |
BUILDFIX gcc fix
| -rw-r--r-- | indra/llcommon/llfasttimer.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/tests/llviewerassetstats_test.cpp | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/indra/llcommon/llfasttimer.cpp b/indra/llcommon/llfasttimer.cpp index fbffe133f1..b40aec4886 100644 --- a/indra/llcommon/llfasttimer.cpp +++ b/indra/llcommon/llfasttimer.cpp @@ -185,7 +185,7 @@ void TimeBlock::processTimes()  	U64 cur_time = getCPUClockCount64();  	// set up initial tree -	for (LLInstanceTracker<TimeBlock>::instance_iter it = LLInstanceTracker<TimeBlock>::beginInstances(), end_it = LLInstanceTracker<TimeBlock>::endInstances();  +	for (LLInstanceTracker<TimeBlock>::instance_iter begin_it = LLInstanceTracker<TimeBlock>::beginInstances(), end_it = LLInstanceTracker<TimeBlock>::endInstances(), it = begin_it;   		it != end_it;   		++it)  	{ diff --git a/indra/newview/tests/llviewerassetstats_test.cpp b/indra/newview/tests/llviewerassetstats_test.cpp index ecdd78a1da..ae93778534 100644 --- a/indra/newview/tests/llviewerassetstats_test.cpp +++ b/indra/newview/tests/llviewerassetstats_test.cpp @@ -39,7 +39,7 @@  namespace LLStatViewer  { -	LLTrace::Measurement<>		FPS_SAMPLE("fpssample"); +	LLTrace::MeasurementStatHandle<>		FPS_SAMPLE("fpssample");  }  void LLVOAvatar::getNearbyRezzedStats(std::vector<S32>& counts) | 
