From e4721fd618a497e9f91d1050e1029504e629efaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 9 Apr 2014 13:43:12 +0200 Subject: [PATCH] MSVC 2013 compatibility: aaargh gaah. I have this weird feeling that this stuff won't be fixed in next release. --- src/Magnum/Test/ContextTest.cpp | 2 +- src/MagnumPlugins/ObjImporter/Test/Test.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Magnum/Test/ContextTest.cpp b/src/Magnum/Test/ContextTest.cpp index cb1b76327..cae8f8084 100644 --- a/src/Magnum/Test/ContextTest.cpp +++ b/src/Magnum/Test/ContextTest.cpp @@ -38,7 +38,7 @@ class ContextTest: public TestSuite::Tester { }; ContextTest::ContextTest() { - addTests({&ContextTest::debugFlag}); + addTests({&ContextTest::debugFlag}); } void ContextTest::debugFlag() { diff --git a/src/MagnumPlugins/ObjImporter/Test/Test.cpp b/src/MagnumPlugins/ObjImporter/Test/Test.cpp index 9b4d858e9..7b728a173 100644 --- a/src/MagnumPlugins/ObjImporter/Test/Test.cpp +++ b/src/MagnumPlugins/ObjImporter/Test/Test.cpp @@ -92,7 +92,7 @@ class ObjImporterTest: public TestSuite::Tester { }; ObjImporterTest::ObjImporterTest() { - addTests({&ObjImporterTest::pointMesh, + addTests({&ObjImporterTest::pointMesh, &ObjImporterTest::lineMesh, &ObjImporterTest::triangleMesh, &ObjImporterTest::mixedPrimitives,