diff --git a/test/gtx/gtx_matrix_interpolation.cpp b/test/gtx/gtx_matrix_interpolation.cpp index 4ff1de8a..108f02e9 100644 --- a/test/gtx/gtx_matrix_interpolation.cpp +++ b/test/gtx/gtx_matrix_interpolation.cpp @@ -5,6 +5,7 @@ #include #include +#include static int test_axisAngle() @@ -40,7 +41,7 @@ static int test_axisAngle() template int testForAxisAngle(glm::vec<3, T, glm::defaultp> const axisTrue, T const angleTrue) { - T const eps = sqrt(std::numeric_limits::epsilon()); + T const eps = std::sqrt(std::numeric_limits::epsilon()); glm::mat<4, 4, T, glm::defaultp> const matTrue = glm::axisAngleMatrix(axisTrue, angleTrue);