mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
bug #86 : use internal:: namespace instead of ei_ prefix
This commit is contained in:
@@ -14,7 +14,7 @@ EIGEN_DONT_INLINE void quatmul_default(const Quat& a, const Quat& b, Quat& c)
|
||||
template<typename Quat>
|
||||
EIGEN_DONT_INLINE void quatmul_novec(const Quat& a, const Quat& b, Quat& c)
|
||||
{
|
||||
c = ei_quat_product<0, Quat, Quat, typename Quat::Scalar, Aligned>::run(a,b);
|
||||
c = internal::quat_product<0, Quat, Quat, typename Quat::Scalar, Aligned>::run(a,b);
|
||||
}
|
||||
|
||||
template<typename Quat> void bench(const std::string& label)
|
||||
|
||||
Reference in New Issue
Block a user