From 96950f2e3282f1950cf47d634a5c7361d6f78e36 Mon Sep 17 00:00:00 2001 From: Christophe Date: Wed, 17 Jan 2024 16:16:39 +0100 Subject: [PATCH] gna --- test/core/core_func_common.cpp | 7 ++++++- test/ext/ext_scalar_integer.cpp | 9 +++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/test/core/core_func_common.cpp b/test/core/core_func_common.cpp index bc09af1f..6a58e1f3 100644 --- a/test/core/core_func_common.cpp +++ b/test/core/core_func_common.cpp @@ -1302,7 +1302,7 @@ namespace ldexp_ { static int test() { - int Error(0); + int Error = 0; { glm::vec1 A = glm::vec1(0.5); @@ -1344,6 +1344,11 @@ static int test_constexpr() constexpr glm::vec2 const B = glm::abs(glm::vec2(1.0f)); constexpr glm::vec3 const C = glm::abs(glm::vec3(1.0f)); constexpr glm::vec4 const D = glm::abs(glm::vec4(1.0f)); + + static_assert(glm::all(glm::equal(A, glm::vec1(1.0f), glm::epsilon())), "GLM: Failed constexpr"); + static_assert(glm::all(glm::equal(B, glm::vec2(1.0f), glm::epsilon())), "GLM: Failed constexpr"); + static_assert(glm::all(glm::equal(C, glm::vec3(1.0f), glm::epsilon())), "GLM: Failed constexpr"); + static_assert(glm::all(glm::equal(D, glm::vec4(1.0f), glm::epsilon())), "GLM: Failed constexpr"); #endif // GLM_HAS_CONSTEXPR return 0; diff --git a/test/ext/ext_scalar_integer.cpp b/test/ext/ext_scalar_integer.cpp index 8da91be2..054133fe 100644 --- a/test/ext/ext_scalar_integer.cpp +++ b/test/ext/ext_scalar_integer.cpp @@ -622,6 +622,11 @@ namespace nextMultiple namespace findNSB { +#if GLM_COMPILER & GLM_COMPILER_CLANG +# pragma clang diagnostic push +# pragma clang diagnostic ignored "-Wpadded" +#endif + template struct type { @@ -630,6 +635,10 @@ namespace findNSB int Return; }; +#if GLM_COMPILER & GLM_COMPILER_CLANG +# pragma clang diagnostic pop +#endif + template static int run() {