Browse Source

Fixed clang build

Christophe Riccio 7 years ago
parent
commit
4a28af5258
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/gtx/gtx_easing.cpp

+ 1 - 1
test/gtx/gtx_easing.cpp

@@ -9,7 +9,7 @@ namespace
 	template<typename T>
 	void _test_easing()
 	{
-		T a = static_cast<float>(0.5);
+		T a = static_cast<T>(0.5);
 		T r;
 
 		r = glm::linearInterpolation(a);