mirror of
https://github.com/g-truc/glm.git
synced 2024-11-22 08:54:35 +00:00
fix: missing genTypeTrait qualifier
This commit is contained in:
parent
fc8f4bb442
commit
5ae94717e0
@ -197,8 +197,8 @@ namespace detail
|
||||
struct genTypeTrait
|
||||
{};
|
||||
|
||||
template <length_t C, length_t R, typename T>
|
||||
struct genTypeTrait<mat<C, R, T> >
|
||||
template <length_t C, length_t R, typename T, qualifier Q>
|
||||
struct genTypeTrait<mat<C, R, T, Q>>
|
||||
{
|
||||
static const genTypeEnum GENTYPE = GENTYPE_MAT;
|
||||
};
|
||||
|
@ -7,8 +7,8 @@
|
||||
namespace glm{
|
||||
namespace detail
|
||||
{
|
||||
template <typename T>
|
||||
struct genTypeTrait<qua<T> >
|
||||
template <typename T, qualifier Q>
|
||||
struct genTypeTrait<qua<T, Q>>
|
||||
{
|
||||
static const genTypeEnum GENTYPE = GENTYPE_QUAT;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user