Browse Source

Fixed build

Christophe Riccio 9 years ago
parent
commit
52d05aee76
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/gtc/gtc_integer.cpp

+ 1 - 1
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);
 		}