From 658839446c2e74f0be2f27081163eb8f8ac4c636 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 5 Dec 2013 01:03:31 +0100 Subject: [PATCH] No need to explicitly specify default template parameter. --- src/Test/MeshTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Test/MeshTest.cpp b/src/Test/MeshTest.cpp index 7b382c3e4..0f8ed4271 100644 --- a/src/Test/MeshTest.cpp +++ b/src/Test/MeshTest.cpp @@ -63,7 +63,7 @@ void MeshTest::configurationPrimitive() { Utility::Configuration c; c.setValue("primitive", Mesh::Primitive::LineStrip); - CORRADE_COMPARE(c.value("primitive"), "LineStrip"); + CORRADE_COMPARE(c.value("primitive"), "LineStrip"); CORRADE_COMPARE(c.value("primitive"), Mesh::Primitive::LineStrip); } @@ -71,7 +71,7 @@ void MeshTest::configurationIndexType() { Utility::Configuration c; c.setValue("type", Mesh::IndexType::UnsignedByte); - CORRADE_COMPARE(c.value("type"), "UnsignedByte"); + CORRADE_COMPARE(c.value("type"), "UnsignedByte"); CORRADE_COMPARE(c.value("type"), Mesh::IndexType::UnsignedByte); }