#ifndef OSMIUM_TEST_CRC_HPP #define OSMIUM_TEST_CRC_HPP #ifdef OSMIUM_TEST_CRC_USE_BOOST /* Use the CRC32 implementation from boost. */ #include using crc_type = boost::crc_32_type; #else /* Use the CRC32 implementation from zlib. */ #include using crc_type = osmium::CRC_zlib; #endif #endif // OSMIUM_TEST_CRC_HPP