From c537cda31ebe19e507e2e025c65c0b8585ff2ec7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 24 May 2014 16:16:30 +0200 Subject: [PATCH] Math: remove superfluous namespace scoping from test. --- src/Magnum/Math/Test/SwizzleTest.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Magnum/Math/Test/SwizzleTest.cpp b/src/Magnum/Math/Test/SwizzleTest.cpp index d4421f858..e49a6e3c5 100644 --- a/src/Magnum/Math/Test/SwizzleTest.cpp +++ b/src/Magnum/Math/Test/SwizzleTest.cpp @@ -64,14 +64,14 @@ void SwizzleTest::rgba() { } void SwizzleTest::sizes() { - constexpr auto a = swizzle<'y', 'x', 'x'>(Math::Vector<2, Int>(1, 2)); - CORRADE_COMPARE(a, (Math::Vector<3, Int>(2, 1, 1))); + constexpr auto a = swizzle<'y', 'x', 'x'>(Vector<2, Int>(1, 2)); + CORRADE_COMPARE(a, (Vector<3, Int>(2, 1, 1))); constexpr auto b = swizzle<'z'>(Vector4i(1, 2, 3, 4)); - CORRADE_COMPARE(b, (Math::Vector<1, Int>(3))); + CORRADE_COMPARE(b, (Vector<1, Int>(3))); constexpr auto c = swizzle<'z', 'x', 'w', 'y', 'z', 'y', 'x'>(Vector4i(1, 2, 3, 4)); - CORRADE_COMPARE(c, (Math::Vector<7, Int>(3, 1, 4, 2, 3, 2, 1))); + CORRADE_COMPARE(c, (Vector<7, Int>(3, 1, 4, 2, 3, 2, 1))); } }}}