Browse Source

Fix unused argument warning

Adam Lusch 1 year ago
parent
commit
b30313ac30
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/detail/func_common_simd.inl

+ 1 - 1
glm/detail/func_common_simd.inl

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