Skip to content

Commit 3ea4f5f

Browse files
committed
Fix windows build
1 parent 8ba75e5 commit 3ea4f5f

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/Graphics/Datatypes/Tests/GLMTests.cc

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,19 @@
2525
DEALINGS IN THE SOFTWARE.
2626
*/
2727

28-
#include <cmath>
28+
#include <algorithm>
29+
#include <Core/Math/MiscMath.h>
2930
#include <Core/Utils/Exception.h>
3031
#include <gtest/gtest.h>
3132
#include <glm/gtc/matrix_transform.hpp>
3233
#include <glm/gtc/type_ptr.hpp>
3334
#include <glm/gtx/string_cast.hpp>
3435
#include <glm/mat4x4.hpp>
3536
#include <glm/vec3.hpp>
36-
#include <glm/vec4.hpp>
37-
#include <iostream>
38-
#include <sstream>
3937

4038
using namespace ::testing;
4139

42-
const static float epsilon = 0.2e-5;
40+
const static float epsilon = 0.2e-5f;
4341

4442
TEST(GLMTests, CameraTransform)
4543
{

0 commit comments

Comments
 (0)