Make gcc happy with closer to standards compliant code..
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -79,7 +79,7 @@ public:
|
||||
return std::find_if(mVector.begin(), mVector.end(), [&k](const typename vec_type_t::value_type& e) { return e.first == k; });
|
||||
}
|
||||
|
||||
typedef DeletePairedPointer DeletePointer;
|
||||
using DeletePointer = ::DeletePairedPointer;
|
||||
};
|
||||
|
||||
template <typename Type, typename Key, int BlockSize = 32>
|
||||
@@ -189,7 +189,7 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
typedef DeletePointer DeletePointer;
|
||||
using DeletePointer = ::DeletePointer;
|
||||
};
|
||||
|
||||
template <typename Type, typename Key, int BlockSize = 32>
|
||||
|
||||
Reference in New Issue
Block a user