From cd50d4ae5c1e995d351ef979c0e98a2eacf33b9a Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 6 Aug 2016 19:35:46 +0200 Subject: [PATCH] Tentative CUDA workaround #530 --- glm/detail/func_common.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/detail/func_common.inl b/glm/detail/func_common.inl index 59a31d9b0..b589b1d43 100644 --- a/glm/detail/func_common.inl +++ b/glm/detail/func_common.inl @@ -439,7 +439,7 @@ namespace detail template GLM_FUNC_QUALIFIER genType mod(genType x, genType y) { - return mod(tvec1(x), y).x; + return mod(tvec1(x), y).x; } template class vecType>