GTX_hash requires C++11

This commit is contained in:
christophe 2023-12-29 10:21:25 +01:00
parent c1fc5fefb9
commit b21a0ee86d
2 changed files with 4 additions and 1 deletions

View file

@ -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"

View file

@ -5,7 +5,6 @@
#include <glm/gtx/transform.hpp>
#include <glm/gtx/quaternion.hpp>
#include <glm/gtx/compatibility.hpp>
#include <glm/ext.hpp>
int test_quat_fastMix()
{