From 4027874b8df4364ccc91d771c586c7e07743554a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 7 Jun 2015 15:23:26 +0200 Subject: [PATCH] Math: cleanup. --- src/Magnum/Math/Test/RectangularMatrixTest.cpp | 2 +- src/Magnum/Math/Test/VectorTest.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Magnum/Math/Test/RectangularMatrixTest.cpp b/src/Magnum/Math/Test/RectangularMatrixTest.cpp index c26a7c2fa..77e5500f3 100644 --- a/src/Magnum/Math/Test/RectangularMatrixTest.cpp +++ b/src/Magnum/Math/Test/RectangularMatrixTest.cpp @@ -37,7 +37,7 @@ namespace Magnum { namespace Math { namespace Implementation { -template<> struct RectangularMatrixConverter<2, 3, float, Mat2x3> { +template<> struct RectangularMatrixConverter<2, 3, Float, Mat2x3> { constexpr static RectangularMatrix<2, 3, Float> from(const Mat2x3& other) { return RectangularMatrix<2, 3, Float>( Vector<3, Float>(other.a[0], other.a[1], other.a[2]), diff --git a/src/Magnum/Math/Test/VectorTest.cpp b/src/Magnum/Math/Test/VectorTest.cpp index b03867ffc..dbca581fe 100644 --- a/src/Magnum/Math/Test/VectorTest.cpp +++ b/src/Magnum/Math/Test/VectorTest.cpp @@ -37,7 +37,7 @@ namespace Magnum { namespace Math { namespace Implementation { -template<> struct VectorConverter<3, float, Vec3> { +template<> struct VectorConverter<3, Float, Vec3> { constexpr static Vector<3, Float> from(const Vec3& other) { return {other.x, other.y, other.z}; }