forked from organicmaps/organicmaps-tmp
[routing] review fixes
This commit is contained in:
parent
bf25034a27
commit
0d56fa17c1
1 changed files with 2 additions and 2 deletions
|
@ -139,12 +139,12 @@ public:
|
|||
|
||||
void SetParent(Vertex const & parent, Vertex const & child) { m_parents[parent] = child; }
|
||||
|
||||
bool HasParent(Vertex const & child)
|
||||
bool HasParent(Vertex const & child) const
|
||||
{
|
||||
return m_parents.count(child) != 0;
|
||||
}
|
||||
|
||||
Vertex const & GetParent(Vertex const & child)
|
||||
Vertex const & GetParent(Vertex const & child) const
|
||||
{
|
||||
auto const it = m_parents.find(child);
|
||||
CHECK(it != m_parents.cend(), ("Can not find parent of child:", child));
|
||||
|
|
Loading…
Add table
Reference in a new issue