Make gcc happy with closer to standards compliant code..

This commit is contained in:
Shyotl
2019-08-10 01:12:01 -05:00
parent a9c165f8a4
commit 4f72de8289
2 changed files with 3 additions and 3 deletions

View File

@@ -183,7 +183,7 @@ namespace LLKeyframeMotionLerp
template<>
inline LLQuaternion lerp(F32 t, const LLQuaternion& before, const LLQuaternion& after)
{
return ::nlerp(t, before, after);
return nlerp(t, before, after);
}
}