Browse Source

MSVC 2013 compatibility: aaargh gaah.

I have this weird feeling that this stuff won't be fixed in next
release.
Vladimír Vondruš 12 years ago
parent
commit
e4721fd618
  1. 2
      src/Magnum/Test/ContextTest.cpp
  2. 2
      src/MagnumPlugins/ObjImporter/Test/Test.cpp

2
src/Magnum/Test/ContextTest.cpp

@ -38,7 +38,7 @@ class ContextTest: public TestSuite::Tester {
}; };
ContextTest::ContextTest() { ContextTest::ContextTest() {
addTests({&ContextTest::debugFlag}); addTests<ContextTest>({&ContextTest::debugFlag});
} }
void ContextTest::debugFlag() { void ContextTest::debugFlag() {

2
src/MagnumPlugins/ObjImporter/Test/Test.cpp

@ -92,7 +92,7 @@ class ObjImporterTest: public TestSuite::Tester {
}; };
ObjImporterTest::ObjImporterTest() { ObjImporterTest::ObjImporterTest() {
addTests({&ObjImporterTest::pointMesh, addTests<ObjImporterTest>({&ObjImporterTest::pointMesh,
&ObjImporterTest::lineMesh, &ObjImporterTest::lineMesh,
&ObjImporterTest::triangleMesh, &ObjImporterTest::triangleMesh,
&ObjImporterTest::mixedPrimitives, &ObjImporterTest::mixedPrimitives,

Loading…
Cancel
Save