diff --git a/glm/gtc/integer.hpp b/glm/gtc/integer.hpp index 0ec280e3..5cf3022d 100644 --- a/glm/gtc/integer.hpp +++ b/glm/gtc/integer.hpp @@ -41,7 +41,9 @@ // Dependencies #include "../detail/setup.hpp" #include "../detail/precision.hpp" +#include "../detail/_vectorize.hpp" #include "../vector_relational.hpp" +#include "../common.hpp" #include #if(defined(GLM_MESSAGES) && !defined(GLM_EXT_INCLUDED)) diff --git a/test/gtc/gtc_integer.cpp b/test/gtc/gtc_integer.cpp index 724f7db3..8daad021 100644 --- a/test/gtc/gtc_integer.cpp +++ b/test/gtc/gtc_integer.cpp @@ -73,7 +73,7 @@ namespace isPowerOfTwo {0x00000001, true}, {0x00000002, true}, {0x00000004, true}, - {0xffffffff, true}, + {0x0000000f, false}, {0x00000000, true}, {0x00000003, false} };