From e308c838df83ec00aed686979bf71ac2c6043949 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 15 Apr 2023 22:02:02 +0200 Subject: [PATCH] imageconverter: remove redundant ifdef from a test. This whole file isn't compiled on platforms without dynamic plugin support. --- src/Magnum/Trade/Test/ImageConverterTest.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Magnum/Trade/Test/ImageConverterTest.cpp b/src/Magnum/Trade/Test/ImageConverterTest.cpp index 7b031b1e6..e83ce8017 100644 --- a/src/Magnum/Trade/Test/ImageConverterTest.cpp +++ b/src/Magnum/Trade/Test/ImageConverterTest.cpp @@ -96,10 +96,8 @@ const struct { }; ImageConverterTest::ImageConverterTest() { - #ifndef CORRADE_PLUGINMANAGER_NO_DYNAMIC_PLUGIN_SUPPORT addInstancedTests({&ImageConverterTest::info}, Containers::arraySize(InfoData)); - #endif /* Create output dir, if doesn't already exist */ Utility::Path::make(Utility::Path::join(TRADE_TEST_OUTPUT_DIR, "ImageConverterTestFiles"));