From ca3abd6e93d969adb3bd48a35658bbc00dd7d1e0 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Wed, 4 May 2016 17:05:02 +0200 Subject: [PATCH] Fixed CUDA support #499, #500, #501 --- glm/detail/setup.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/detail/setup.hpp b/glm/detail/setup.hpp index 397c8283..926ef001 100644 --- a/glm/detail/setup.hpp +++ b/glm/detail/setup.hpp @@ -422,7 +422,7 @@ # define GLM_HAS_INITIALIZER_LISTS ((GLM_LANG & GLM_LANG_CXX0X_FLAG) && (\ ((GLM_COMPILER & GLM_COMPILER_GCC) && (GLM_COMPILER >= GLM_COMPILER_GCC44)) || \ ((GLM_COMPILER & GLM_COMPILER_VC) && (GLM_COMPILER >= GLM_COMPILER_VC2013)) || \ - ((GLM_COMPILER & GLM_COMPILER_CUDA)))) + ((GLM_COMPILER & GLM_COMPILER_CUDA) && (GLM_COMPILER >= GLM_COMPILER_CUDA75)))) #endif // N2544 Unrestricted unions http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2544.pdf