mirror of
https://github.com/g-truc/glm.git
synced 2025-04-05 05:25:02 +00:00
gna
This commit is contained in:
parent
3f08c9c83b
commit
3e359b820a
1 changed files with 10 additions and 9 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue