@ -26,6 +26,7 @@
/// @author Christophe Riccio
///////////////////////////////////////////////////////////////////////////////////
#include "func_vector_relational.hpp"
#include "type_vec2.hpp"
#include "type_vec3.hpp"
#include "type_vec4.hpp"
#include "func_common.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
@ -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;
default:
std::cout << "Visual C++ version not detected" << std::endl;
Error += 1;