- Increase bits for node id due to definition in internal pbf is 64 bit range - There are some very long tags in internal pbf, increase upper limit for string definition. - Add additional logs to debug pbf with long tags Closes #7.
23 lines
484 B
C++
23 lines
484 B
C++
#ifndef OSRM_EXTRACTOR_PACKED_OSM_IDS_HPP
|
|
#define OSRM_EXTRACTOR_PACKED_OSM_IDS_HPP
|
|
|
|
#include "util/packed_vector.hpp"
|
|
#include "util/typedefs.hpp"
|
|
|
|
namespace osrm
|
|
{
|
|
namespace extractor
|
|
{
|
|
namespace detail
|
|
{
|
|
template <storage::Ownership Ownership>
|
|
using PackedOSMIDs = util::detail::PackedVector<OSMNodeID, 63, Ownership>;
|
|
}
|
|
|
|
using PackedOSMIDsView = detail::PackedOSMIDs<storage::Ownership::View>;
|
|
using PackedOSMIDs = detail::PackedOSMIDs<storage::Ownership::Container>;
|
|
}
|
|
}
|
|
|
|
#endif
|