Fixed constexpr build...

This commit is contained in:
Christophe Riccio
2018-08-07 20:44:44 +02:00
parent 6d34ae4c5e
commit 13ca6771ca
7 changed files with 58 additions and 59 deletions

View File

@@ -650,7 +650,6 @@ static int test_quat()
glm::quat constexpr Q = glm::identity<glm::quat>();
static_assert(Q.x - glm::quat(1.0f, glm::vec3(0.0f)).x <= glm::epsilon<float>(), "GLM: Failed constexpr");
static_assert(Q[0] == 0, "GLM: Failed constexpr");
}
return Error;