diff options
| -rw-r--r-- | indra/llcommon/lltracerecording.h | 4 | ||||
| -rw-r--r-- | indra/newview/llviewerobjectlist.cpp | 2 | 
2 files changed, 3 insertions, 3 deletions
| diff --git a/indra/llcommon/lltracerecording.h b/indra/llcommon/lltracerecording.h index 704c98b038..a060e406b3 100644 --- a/indra/llcommon/lltracerecording.h +++ b/indra/llcommon/lltracerecording.h @@ -362,7 +362,7 @@ namespace LLTrace  			size_t total_periods = mRecordingPeriods.size();  			num_periods = llmin(num_periods, total_periods); -			typename T::value_t mean = T::value_t(); +			typename T::value_t mean = typename T::value_t();  			if (num_periods <= 0) { return mean; }  			for (S32 i = 1; i <= num_periods; i++) @@ -383,7 +383,7 @@ namespace LLTrace  			size_t total_periods = mRecordingPeriods.size();  			num_periods = llmin(num_periods, total_periods); -			typename T::value_t mean = T::value_t(); +			typename T::value_t mean = typename T::value_t();  			if (num_periods <= 0) { return mean; }  			for (S32 i = 1; i <= num_periods; i++) diff --git a/indra/newview/llviewerobjectlist.cpp b/indra/newview/llviewerobjectlist.cpp index 922d386818..b53fdf3317 100644 --- a/indra/newview/llviewerobjectlist.cpp +++ b/indra/newview/llviewerobjectlist.cpp @@ -2091,7 +2091,7 @@ S32 LLViewerObjectList::findReferences(LLDrawable *drawablep) const  void LLViewerObjectList::orphanize(LLViewerObject *childp, U32 parent_id, U32 ip, U32 port)  {  #ifdef ORPHAN_SPAM -	llinfos << "Orphaning object " << childp->getID() << " with parent " << parent_id << llendl; +	LL_DEBUGS("ORPHANS") << "Orphaning object " << childp->getID() << " with parent " << parent_id << llendl;  #endif  	// We're an orphan, flag things appropriately. | 
