From fdc344518fce286e3386872861185c4fd143cc5a Mon Sep 17 00:00:00 2001 From: Christophe Date: Wed, 17 Jan 2024 16:37:44 +0100 Subject: [PATCH] gna --- test/gtx/gtx_hash.cpp | 29 +++++++++++++++++++---------- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/test/gtx/gtx_hash.cpp b/test/gtx/gtx_hash.cpp index 4ecd2e8d..c93ff3e9 100644 --- a/test/gtx/gtx_hash.cpp +++ b/test/gtx/gtx_hash.cpp @@ -4,19 +4,24 @@ #include -int test_compile() +static int test_compile() { - int Error = 0; + int Error = 0; // Vector types - std::unordered_map map_vec1; - Error += ++map_vec1[glm::vec1(0.0f)]; - std::unordered_map map_vec2; - Error += ++map_vec2[glm::vec2(0.0f)]; - std::unordered_map map_vec3; - Error += ++map_vec3[glm::vec3(0.0f)]; - std::unordered_map map_vec4; - Error += ++map_vec4[glm::vec4(0.0f)]; + std::unordered_map map_vec1; + Error += ++map_vec1[glm::ivec1(0)]; + std::unordered_map map_vec2; + Error += ++map_vec2[glm::ivec2(0)]; + std::unordered_map map_vec3; + Error += ++map_vec3[glm::ivec3(0)]; + std::unordered_map 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 map_quat; @@ -44,6 +49,10 @@ int test_compile() std::unordered_map 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; }