Fix compilation of rtree benchmark

This commit is contained in:
Patrick Niklaus 2017-04-03 13:02:18 +00:00 committed by Patrick Niklaus
parent 7f6e0c478b
commit d61102e255

View File

@ -27,10 +27,7 @@ constexpr int32_t WORLD_MIN_LON = -180 * COORDINATE_PRECISION;
constexpr int32_t WORLD_MAX_LON = 180 * COORDINATE_PRECISION;
using RTreeLeaf = extractor::EdgeBasedNode;
using BenchStaticRTree =
util::StaticRTree<RTreeLeaf,
util::ShM<util::Coordinate, storage::Ownership::Container>::vector,
storage::Ownership::Container>;
using BenchStaticRTree = util::StaticRTree<RTreeLeaf, storage::Ownership::Container>;
std::vector<util::Coordinate> loadCoordinates(const boost::filesystem::path &nodes_file)
{