fix: missing genTypeTrait qualifier

This commit is contained in:
Gottfried Leibniz 2023-01-03 12:05:52 -04:00
parent fc8f4bb442
commit 5ae94717e0
2 changed files with 4 additions and 4 deletions

View File

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

View File

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