From 79c128a0061047509f2f235cbe67a39649484fb1 Mon Sep 17 00:00:00 2001 From: x7z4w Date: Fri, 16 Jan 2026 13:41:55 +0000 Subject: [PATCH] [routing] Fix crash Signed-off-by: x7z4w --- libs/routing/data_source.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libs/routing/data_source.hpp b/libs/routing/data_source.hpp index 7306166fd..ef8c9888d 100644 --- a/libs/routing/data_source.hpp +++ b/libs/routing/data_source.hpp @@ -9,8 +9,6 @@ #include -#include "3party/ankerl/unordered_dense.h" - namespace routing { // Main purpose is to take and hold MwmHandle-s here (readers and caches). @@ -20,7 +18,8 @@ class MwmDataSource { DataSource & m_dataSource; std::shared_ptr m_numMwmIDs; - ankerl::unordered_dense::map m_handles; + // TODO: use ankerl::unordered_dense here + std::unordered_map m_handles; // Used for FeaturesRoadGraph in openlr only. std::map m_handles2;