Bläddra i källkod

Fixed build on GCC

Christophe Riccio 12 år sedan
förälder
incheckning
08c95429fe
3 ändrade filer med 3 tillägg och 4 borttagningar
  1. 1 0
      glm/core/func_common.inl
  2. 2 1
      glm/core/func_geometric.inl
  3. 0 3
      test/core/core_setup_message.cpp

+ 1 - 0
glm/core/func_common.inl

@@ -26,6 +26,7 @@
 /// @author Christophe Riccio
 ///////////////////////////////////////////////////////////////////////////////////
 
+#include "func_vector_relational.hpp"
 #include "type_vec2.hpp"
 #include "type_vec3.hpp"
 #include "type_vec4.hpp"

+ 2 - 1
glm/core/func_geometric.inl

@@ -26,6 +26,7 @@
 /// @author Christophe Riccio
 ///////////////////////////////////////////////////////////////////////////////////
 
+#include "func_common.hpp"
 #include "type_vec2.hpp"
 #include "type_vec4.hpp"
 #include "type_float.hpp"
@@ -308,7 +309,7 @@ namespace glm
 		if(k < T(0))
 			return vecType<T, P>(0);
 		else
-			return eta * I - (eta * dotValue + sqrt(k)) * N;
+			return eta * I - (eta * dotValue + std::sqrt(k)) * N;
 	}
 
 }//namespace glm

+ 0 - 3
test/core/core_setup_message.cpp

@@ -36,9 +36,6 @@ int test_compiler()
 		case GLM_COMPILER_VC12:
 			std::cout << "GLM_COMPILER_VC12" << std::endl;
 			break;
-		case GLM_COMPILER_VC2013:
-			std::cout << "GLM_COMPILER_VC2013" << std::endl;
-			break;
 		default:
 			std::cout << "Visual C++ version not detected" << std::endl;
 			Error += 1;