From e712d45552447ec5a7fdb180e701b5660d0ad5a5 Mon Sep 17 00:00:00 2001 From: Thomas Madlener Date: Fri, 6 Sep 2024 14:00:50 +0200 Subject: [PATCH] Remove no longer necessary pre-processor checks (#664) --- src/SIOBlock.cc | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/SIOBlock.cc b/src/SIOBlock.cc index 8dea9105b..61fb96182 100644 --- a/src/SIOBlock.cc +++ b/src/SIOBlock.cc @@ -3,13 +3,9 @@ #include #include #include +#include #include #include -#ifdef USE_BOOST_FILESYSTEM - #include -#else - #include -#endif namespace podio { @@ -133,11 +129,7 @@ SIOBlockLibraryLoader::LoadStatus SIOBlockLibraryLoader::loadLib(const std::stri } std::vector> SIOBlockLibraryLoader::getLibNames() { -#ifdef USE_BOOST_FILESYSTEM - namespace fs = boost::filesystem; -#else namespace fs = std::filesystem; -#endif std::vector> libs; const auto ldLibPath = []() {