Skip to content

Commit 326f63b

Browse files
committed
xrAICore: Fix unknown enum and unnecesary typename
1 parent 4d9a3c2 commit 326f63b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/xrAICore/Navigation/PathManagers/path_manager_solver_inline.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ IC void CSolverPathManager::setup(const _Graph* _graph, _DataStorage* _data_stor
2929
this->start_node_index = _start_node_index;
3030
this->goal_node_index = _goal_node_index;
3131
this->max_visited_node_count = params.max_visited_node_count;
32-
this->max_range = (_solver_dist_type)params.max_range;
32+
this->max_range = (GraphEngineSpace::_solver_dist_type)params.max_range;
3333
this->max_iteration_count = params.max_iteration_count;
3434
}
3535

@@ -90,7 +90,7 @@ IC void CSolverPathManager::create_path(T& vertex)
9090
{
9191
VERIFY(this->data_storage);
9292
if (m_edge_path)
93-
this->data_storage->get_edge_path(*m_edge_path, &vertex, typename _Graph::reverse_search);
93+
this->data_storage->get_edge_path(*m_edge_path, &vertex, _Graph::reverse_search);
9494
}
9595

9696
#undef TEMPLATE_SPECIALIZATION

0 commit comments

Comments
 (0)