From 7a9bac807d9b5412b16ddf218163956f75976bce Mon Sep 17 00:00:00 2001 From: Olga Khlopkova Date: Thu, 5 Nov 2020 09:25:44 +0300 Subject: [PATCH] [routing] Removed unused method. --- routing/index_graph_starter.cpp | 5 ----- routing/index_graph_starter.hpp | 1 - 2 files changed, 6 deletions(-) diff --git a/routing/index_graph_starter.cpp b/routing/index_graph_starter.cpp index 4a9e07ae1a..ccc13413d5 100644 --- a/routing/index_graph_starter.cpp +++ b/routing/index_graph_starter.cpp @@ -32,11 +32,6 @@ void FillNumMwmIds(set const & segments, set & mwms) namespace routing { // IndexGraphStarter::Ending ----------------------------------------------------------------------- -bool IndexGraphStarter::Ending::OverlapsWithMwm(NumMwmId mwmId) const -{ - return m_mwmIds.find(mwmId) != m_mwmIds.cend(); -} - void IndexGraphStarter::Ending::FillMwmIds() { for (auto const & segment : m_real) diff --git a/routing/index_graph_starter.hpp b/routing/index_graph_starter.hpp index 88172a558e..1b476a76b6 100644 --- a/routing/index_graph_starter.hpp +++ b/routing/index_graph_starter.hpp @@ -189,7 +189,6 @@ public: // Start or finish ending information. struct Ending { - bool OverlapsWithMwm(NumMwmId mwmId) const; void FillMwmIds(); // Fake segment id. uint32_t m_id = 0;