From 52d05aee76d836dae57611193645448853146275 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Thu, 10 Mar 2016 21:24:37 +0100 Subject: [PATCH] Fixed build --- test/gtc/gtc_integer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/gtc/gtc_integer.cpp b/test/gtc/gtc_integer.cpp index 98614780..36bfc44e 100644 --- a/test/gtc/gtc_integer.cpp +++ b/test/gtc/gtc_integer.cpp @@ -219,7 +219,7 @@ namespace uround for(float f = 0.0f; f < 3.1f; f += 0.05f) { int RoundFast = glm::uround(f); - int RoundSTD = std::round(f); + int RoundSTD = glm::round(f); Error += RoundFast == RoundSTD ? 0 : 1; assert(!Error); }