summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorRichard Linden <none@none>2013-03-21 17:26:43 -0700
committerRichard Linden <none@none>2013-03-21 17:26:43 -0700
commit0c63f95b9e1368607126b8d2edbcd91172e61db5 (patch)
treeac99275d1d4f9d4dc1a38ac24e9b5601af1352a0 /indra/llcommon
parent1f507c3cfca0c7722ebeaf71883fbaa83988e1a9 (diff)
BUILDFIX fix for gcc build
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/llcriticaldamp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llcriticaldamp.cpp b/indra/llcommon/llcriticaldamp.cpp
index 59a31bf9df..e47ab35641 100644
--- a/indra/llcommon/llcriticaldamp.cpp
+++ b/indra/llcommon/llcriticaldamp.cpp
@@ -116,5 +116,5 @@ F32 LLSmoothInterpolation::getInterpolant(LLUnit<LLUnits::Seconds, F32> time_con
//-----------------------------------------------------------------------------
F32 LLSmoothInterpolation::calcInterpolant(F32 time_constant)
{
- return llclamp(1.f - pow(2.f, -sTimeDelta / time_constant), 0.f, 1.f);
+ return llclamp(1.f - powf(2.f, -sTimeDelta / time_constant), 0.f, 1.f);
}