Browse Source

imageconverter: remove redundant ifdef from a test.

This whole file isn't compiled on platforms without dynamic plugin
support.
pull/617/head
Vladimír Vondruš 3 years ago
parent
commit
e308c838df
  1. 2
      src/Magnum/Trade/Test/ImageConverterTest.cpp

2
src/Magnum/Trade/Test/ImageConverterTest.cpp

@ -96,10 +96,8 @@ const struct {
}; };
ImageConverterTest::ImageConverterTest() { ImageConverterTest::ImageConverterTest() {
#ifndef CORRADE_PLUGINMANAGER_NO_DYNAMIC_PLUGIN_SUPPORT
addInstancedTests({&ImageConverterTest::info}, addInstancedTests({&ImageConverterTest::info},
Containers::arraySize(InfoData)); Containers::arraySize(InfoData));
#endif
/* Create output dir, if doesn't already exist */ /* Create output dir, if doesn't already exist */
Utility::Path::make(Utility::Path::join(TRADE_TEST_OUTPUT_DIR, "ImageConverterTestFiles")); Utility::Path::make(Utility::Path::join(TRADE_TEST_OUTPUT_DIR, "ImageConverterTestFiles"));

Loading…
Cancel
Save