summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorRichard Linden <none@none>2013-08-15 17:35:17 -0700
committerRichard Linden <none@none>2013-08-15 17:35:17 -0700
commit52640b85c497e8b0a900ff3f1e051021b5485277 (patch)
tree7f5ef8ee26209b7be6abf39bf1d2d9de575288bc /indra
parent9f7bfa1c3710856cd2b0a0a8a429d6c45b0fcd09 (diff)
BUILDFIX: mac
Diffstat (limited to 'indra')
-rw-r--r--indra/llcommon/lltracerecording.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/llcommon/lltracerecording.h b/indra/llcommon/lltracerecording.h
index 68b95a1003..f5fb2bf561 100644
--- a/indra/llcommon/lltracerecording.h
+++ b/indra/llcommon/lltracerecording.h
@@ -496,8 +496,8 @@ namespace LLTrace
}
}
return (num_periods
- ? RelatedTypes<typename T::value_t>::fractional_t(mean / num_periods)
- : RelatedTypes<typename T::value_t>::fractional_t(NaN));
+ ? typename RelatedTypes<typename T::value_t>::fractional_t(mean / num_periods)
+ : typename RelatedTypes<typename T::value_t>::fractional_t(NaN));
}
template<typename T>
@@ -537,8 +537,8 @@ namespace LLTrace
}
return (num_periods
- ? RelatedTypes<typename T::value_t>::fractional_t(mean / num_periods)
- : RelatedTypes<typename T::value_t>::fractional_t(NaN));
+ ? typename RelatedTypes<typename T::value_t>::fractional_t(mean / num_periods)
+ : typename RelatedTypes<typename T::value_t>::fractional_t(NaN));
}
template<typename T>