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);
}
}

View File

@@ -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>