Fixed Visual C++ constexpr build error #555, #556

This commit is contained in:
Christophe Riccio
2016-10-10 22:03:57 +02:00
parent cae9f61e46
commit 19a6d64e8c
7 changed files with 53 additions and 43 deletions

View File

@@ -1,4 +1,5 @@
glmCreateTestGTC(core_force_pure)
glmCreateTestGTC(core_force_unrestricted_gentype)
glmCreateTestGTC(core_type_aligned)
glmCreateTestGTC(core_type_cast)
glmCreateTestGTC(core_type_ctor)

View File

@@ -0,0 +1,11 @@
#define GLM_FORCE_UNRESTRICTED_GENTYPE
#include <glm/glm.hpp>
int main()
{
int Error = 0;
return Error;
}