From 7740d53f6bdfef7dea65fd2a71ef96e230906c1a Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Thu, 10 Aug 2017 02:51:17 +0200 Subject: [PATCH] Trying to find clang problem with GTC_type_precision --- test/gtc/gtc_type_precision.cpp | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/test/gtc/gtc_type_precision.cpp b/test/gtc/gtc_type_precision.cpp index f98abcef..94b08706 100644 --- a/test/gtc/gtc_type_precision.cpp +++ b/test/gtc/gtc_type_precision.cpp @@ -875,12 +875,11 @@ int main() { int Error = 0; -# if GLM_HAS_OPENMP && 0 - Error += test_openmp(); -# endif// - Error += test_scalar_size(); Error += test_fvec_size(); + + return Error; + Error += test_fvec_precision(); Error += test_fvec_conversion(); Error += test_dvec_precision(); @@ -893,5 +892,9 @@ int main() Error += test_quat_size(); Error += test_quat_precision(); +# if GLM_HAS_OPENMP && 0 + Error += test_openmp(); +# endif// + return Error; }