hash.hpp / hash.inl uses the old tquat not qua
|
template<typename T, glm::qualifier Q> |
|
struct hash<glm::tquat<T,Q>> |
|
{ |
|
GLM_FUNC_DECL size_t operator()(glm::tquat<T, Q> const& q) const; |
|
}; |
|
|
|
template<typename T, glm::qualifier Q> |
|
struct hash<glm::tdualquat<T,Q> > |
|
{ |
|
GLM_FUNC_DECL size_t operator()(glm::tdualquat<T,Q> const& q) const; |
|
}; |
this makes code without template aliases to fail since then tquat is not defined.
hash.hpp / hash.inl uses the old tquat not qua
glm/glm/gtx/hash.hpp
Lines 75 to 85 in f920ffa
this makes code without template aliases to fail since then tquat is not defined.