Fix unused argument warning

This commit is contained in:
Adam Lusch 2024-09-03 17:35:27 -05:00
parent 437fe63665
commit b30313ac30

View File

@ -572,7 +572,7 @@ namespace glm {
template<length_t L, qualifier Q> template<length_t L, qualifier Q>
struct compute_splat<L, float, Q, true> { struct compute_splat<L, float, Q, true> {
template<int c> template<int c>
GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<L, float, Q> call(vec<L, float, Q> const& a) GLM_FUNC_QUALIFIER GLM_CONSTEXPR static vec<L, float, Q> call(vec<L, float, Q> const&)
{} {}
template<> template<>