Fix PR comments
This commit is contained in:
committed by
Patrick Niklaus
parent
a66918a303
commit
609801ae99
@@ -0,0 +1,22 @@
|
||||
#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, 33, Ownership>;
|
||||
}
|
||||
|
||||
using PackedOSMIDsView = detail::PackedOSMIDs<storage::Ownership::View>;
|
||||
using PackedOSMIDs = detail::PackedOSMIDs<storage::Ownership::Container>;
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user