This commit is contained in:
Christophe 2024-01-17 17:19:04 +01:00
parent 3f08c9c83b
commit 3e359b820a

View file

@ -1,4 +1,10 @@
#if __cplusplus >= 201103L
#if GLM_COMPILER & GLM_COMPILER_CLANG
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wfloat-equal"
#endif
#define GLM_ENABLE_EXPERIMENTAL
#include <glm/gtx/hash.hpp>
@ -18,11 +24,6 @@ static int test_compile()
std::unordered_map<glm::ivec4, int> map_vec4;
Error += ++map_vec4[glm::ivec4(0)];
#if GLM_COMPILER & GLM_COMPILER_CLANG
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wfloat-equal"
#endif
// Quaternion types
std::unordered_map<glm::quat, int> map_quat;
Error += ++map_quat[glm::quat(0.0f, glm::vec3(0.0f))];
@ -49,10 +50,6 @@ static int test_compile()
std::unordered_map<glm::mat4x4, int> map_mat4x4;
Error += ++map_mat4x4[glm::mat4x4(0.0f)];
#if GLM_COMPILER & GLM_COMPILER_CLANG
# pragma clang diagnostic pop
#endif
return Error > 0 ? 0 : 1;
}
@ -65,6 +62,10 @@ int main()
return Error;
}
#if GLM_COMPILER & GLM_COMPILER_CLANG
# pragma clang diagnostic pop
#endif
#else
int main()