From b21a0ee86da8a80955703030179e381b0ea3d752 Mon Sep 17 00:00:00 2001 From: christophe Date: Fri, 29 Dec 2023 10:21:25 +0100 Subject: [PATCH] GTX_hash requires C++11 --- glm/ext.hpp | 4 ++++ test/gtx/gtx_quaternion.cpp | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/glm/ext.hpp b/glm/ext.hpp index 03d38864..164dc2a1 100644 --- a/glm/ext.hpp +++ b/glm/ext.hpp @@ -214,7 +214,11 @@ #include "./gtx/functions.hpp" #include "./gtx/gradient_paint.hpp" #include "./gtx/handed_coordinate_space.hpp" + +#if __cplusplus >= 201103L #include "./gtx/hash.hpp" +#endif + #include "./gtx/integer.hpp" #include "./gtx/intersect.hpp" #include "./gtx/io.hpp" diff --git a/test/gtx/gtx_quaternion.cpp b/test/gtx/gtx_quaternion.cpp index 80cbbacd..ed90faa3 100644 --- a/test/gtx/gtx_quaternion.cpp +++ b/test/gtx/gtx_quaternion.cpp @@ -5,7 +5,6 @@ #include #include #include -#include int test_quat_fastMix() {