This commit is contained in:
Christophe 2024-01-17 16:37:44 +01:00
parent a0a840e001
commit fdc344518f

View file

@ -4,19 +4,24 @@
#include <unordered_map>
int test_compile()
static int test_compile()
{
int Error = 0;
int Error = 0;
// Vector types
std::unordered_map<glm::vec1, int> map_vec1;
Error += ++map_vec1[glm::vec1(0.0f)];
std::unordered_map<glm::vec2, int> map_vec2;
Error += ++map_vec2[glm::vec2(0.0f)];
std::unordered_map<glm::vec3, int> map_vec3;
Error += ++map_vec3[glm::vec3(0.0f)];
std::unordered_map<glm::vec4, int> map_vec4;
Error += ++map_vec4[glm::vec4(0.0f)];
std::unordered_map<glm::ivec1, int> map_vec1;
Error += ++map_vec1[glm::ivec1(0)];
std::unordered_map<glm::ivec2, int> map_vec2;
Error += ++map_vec2[glm::ivec2(0)];
std::unordered_map<glm::ivec3, int> map_vec3;
Error += ++map_vec3[glm::ivec3(0)];
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;
@ -44,6 +49,10 @@ 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;
}