diff --git a/indra/llcommon/lltrace.h b/indra/llcommon/lltrace.h
index a574be02da031b46628e6988a875fce68ba7cc0f..376248c87a6d05c2c6577ad655dff233b708f562 100644
--- a/indra/llcommon/lltrace.h
+++ b/indra/llcommon/lltrace.h
@@ -231,15 +231,6 @@ class AccumulatorBuffer : public LLRefCount
 
 template<typename ACCUMULATOR> size_t AccumulatorBuffer<ACCUMULATOR>::sNextStorageSlot = 0;
 
-
-
-//TODO: replace with decltype when C++11 is enabled
-template<typename T>
-struct MeanValueType
-{
-	typedef F64 type;
-};
-
 template<typename ACCUMULATOR>
 class TraceType 
 :	 public LLInstanceTracker<TraceType<ACCUMULATOR>, std::string>
@@ -382,6 +373,7 @@ class MeasurementAccumulator
 	U32	mNumSamples;
 };
 
+
 template<typename T>
 class CountAccumulator
 {
@@ -457,13 +449,6 @@ class TimeBlockAccumulator
 
 };
 
-
-template<>
-struct MeanValueType<TraceType<TimeBlockAccumulator> >
-{
-	typedef LLUnit<LLUnits::Seconds, F64> type;
-};
-
 template<>
 class TraceType<TimeBlockAccumulator::CallCountAspect>
 :	public TraceType<TimeBlockAccumulator>
@@ -475,13 +460,6 @@ class TraceType<TimeBlockAccumulator::CallCountAspect>
 	{}
 };
 
-template<>
-struct MeanValueType<TraceType<TimeBlockAccumulator::CallCountAspect> >
-{
-	typedef F64 type;
-};
-
-
 template<>
 class TraceType<TimeBlockAccumulator::SelfTimeAspect>
 	:	public TraceType<TimeBlockAccumulator>
@@ -493,13 +471,6 @@ class TraceType<TimeBlockAccumulator::SelfTimeAspect>
 	{}
 };
 
-template<>
-struct MeanValueType<TraceType<TimeBlockAccumulator::SelfTimeAspect> >
-{
-	typedef LLUnit<LLUnits::Seconds, F64> type;
-};
-
-
 class TimeBlock;
 class TimeBlockTreeNode
 {
diff --git a/indra/llcommon/lltracerecording.h b/indra/llcommon/lltracerecording.h
index 0a3e9e5a0b6846b4a50374786de42f3ed486a862..9ebcbdd8cea3a31b4c1df95cd45f16f7d0dfd938 100644
--- a/indra/llcommon/lltracerecording.h
+++ b/indra/llcommon/lltracerecording.h
@@ -345,9 +345,9 @@ namespace LLTrace
 		}
 
 		template <typename T>
-		typename MeanValueType<TraceType<T> >::type getPeriodMean(const TraceType<T>& stat) const
+		typename T::value_t getPeriodMean(const TraceType<T>& stat) const
 		{
-			typename MeanValueType<TraceType<T> >::type mean = 0.0;
+			typename T::value_t mean = 0.0;
 			U32 num_periods = mRecordingPeriods.size();
 			for (S32 i = 0; i < num_periods; i++)
 			{
@@ -361,9 +361,9 @@ namespace LLTrace
 		}
 
 		template <typename T>
-		typename MeanValueType<TraceType<T> >::type getPeriodMeanPerSec(const TraceType<T>& stat) const
+		typename T::value_t getPeriodMeanPerSec(const TraceType<T>& stat) const
 		{
-			typename MeanValueType<TraceType<T> >::type mean = 0.0;
+			typename T::value_t mean = 0.0;
 			U32 num_periods = mRecordingPeriods.size();
 			for (S32 i = 0; i < num_periods; i++)
 			{
diff --git a/indra/newview/llviewertexturelist.cpp b/indra/newview/llviewertexturelist.cpp
index 1bb4041bbdc699dfd8ed47095ae32e0b4f5df2ce..ae677f541bbc78b632649f4df9dd45af52552711 100644
--- a/indra/newview/llviewertexturelist.cpp
+++ b/indra/newview/llviewertexturelist.cpp
@@ -617,7 +617,7 @@ void LLViewerTextureList::updateImages(F32 max_time)
 	}
 	cleared = FALSE;
 
-	LLAppViewer::getTextureFetch()->setTextureBandwidth(LLTrace::get_frame_recording().getPeriodMeanPerSec(LLStatViewer::TEXTURE_KBIT).value());
+	LLAppViewer::getTextureFetch()->setTextureBandwidth(LLTrace::get_frame_recording().getPeriodMeanPerSec(LLStatViewer::TEXTURE_KBIT));
 
 	{
 		using namespace LLStatViewer;