Skip to content

Commit

Permalink
Remove no longer necessary pre-processor checks
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Sep 6, 2024
1 parent 27e92d5 commit d01fb0b
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/SIOBlock.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,9 @@
#include <algorithm>
#include <cstdlib>
#include <dlfcn.h>
#include <filesystem>
#include <map>
#include <sstream>
#ifdef USE_BOOST_FILESYSTEM
#include <boost/filesystem.hpp>
#else
#include <filesystem>
#endif

namespace podio {

Expand Down Expand Up @@ -133,11 +129,7 @@ SIOBlockLibraryLoader::LoadStatus SIOBlockLibraryLoader::loadLib(const std::stri
}

std::vector<std::tuple<std::string, std::string>> SIOBlockLibraryLoader::getLibNames() {
#ifdef USE_BOOST_FILESYSTEM
namespace fs = boost::filesystem;
#else
namespace fs = std::filesystem;
#endif
std::vector<std::tuple<std::string, std::string>> libs;

const auto ldLibPath = []() {
Expand Down

0 comments on commit d01fb0b

Please sign in to comment.