Updated SSE error message

master
Christophe Riccio ago%!(EXTRA string=15 years)
parent 83809b1066
commit 8f700a05ef
  1. 10
      glm/gtx/simd_mat4.hpp

@ -17,13 +17,13 @@
// Dependency: // Dependency:
#include "../glm.hpp" #include "../glm.hpp"
#if(!(GLM_ARCH & GLM_ARCH_SSE2)) #if(GLM_ARCH & GLM_ARCH_SSE2)
#error "GLM: GLM_GTX_simd_mat4 requires compiler support of SSE2 through intrinsics" # include "../core/intrinsic_matrix.hpp"
# include "../gtx/simd_vec4.hpp"
#else
# error "GLM: GLM_GTX_simd_mat4 requires compiler support of SSE2 through intrinsics"
#endif #endif
#include "../core/intrinsic_matrix.hpp"
#include "../gtx/simd_vec4.hpp"
#if(defined(GLM_MESSAGES) && !defined(glm_ext)) #if(defined(GLM_MESSAGES) && !defined(glm_ext))
# pragma message("GLM: GLM_GTX_simd_mat4 extension included") # pragma message("GLM: GLM_GTX_simd_mat4 extension included")
#endif #endif

Loading…
Cancel
Save