Fixed build

This commit is contained in:
Christophe Riccio 2016-03-10 21:24:37 +01:00
parent 79b433e9b0
commit 52d05aee76

View File

@ -219,7 +219,7 @@ namespace uround
for(float f = 0.0f; f < 3.1f; f += 0.05f) for(float f = 0.0f; f < 3.1f; f += 0.05f)
{ {
int RoundFast = glm::uround(f); int RoundFast = glm::uround(f);
int RoundSTD = std::round(f); int RoundSTD = glm::round(f);
Error += RoundFast == RoundSTD ? 0 : 1; Error += RoundFast == RoundSTD ? 0 : 1;
assert(!Error); assert(!Error);
} }