Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Running C.I. for #1320 #1338

Closed
wants to merge 13 commits into from
Prev Previous commit
Next Next commit
Fix unused argument warning
  • Loading branch information
alusch authored and christophe committed Jan 19, 2025
commit cdc85a58b522a6819e82cf5adda3a315771963a2
2 changes: 1 addition & 1 deletion glm/detail/func_common_simd.inl
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ namespace glm {
template<length_t L, qualifier Q>
struct compute_splat<L, float, Q, true> {
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<>
Expand Down
Loading