Skip to content

Commit

Permalink
another build fix ( #500 )
Browse files Browse the repository at this point in the history
  • Loading branch information
xrSimpodin committed Dec 16, 2024
1 parent 8c83c8b commit b7042c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ogsr_engine/COMMON_AI/ALGORITHMS/a_star.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ template <typename _dist_type, typename _priority_queue, typename _vertex_manage
class _data_storage_constructor = CDataStorageConstructor,
typename _iteration_type = u32>
class CAStar
: public CDijkstra<_dist_type, _priority_queue, _vertex_manager, _vertex_allocator, euclidian_heuristics, _data_storage_base, AStar::_Vertex<_dist_type, _vertex>::__vertex,
: public CDijkstra<_dist_type, _priority_queue, _vertex_manager, _vertex_allocator, euclidian_heuristics, _data_storage_base, typename AStar::_Vertex<_dist_type, _vertex>::__vertex,
_builder_allocator_constructor, _manager_builder_allocator_constructor, _data_storage_constructor, _iteration_type>
{
protected:
typedef CDijkstra<_dist_type, _priority_queue, _vertex_manager, _vertex_allocator, euclidian_heuristics, _data_storage_base, AStar::_Vertex<_dist_type, _vertex>::__vertex,
typedef CDijkstra<_dist_type, _priority_queue, _vertex_manager, _vertex_allocator, euclidian_heuristics, _data_storage_base, typename AStar::_Vertex<_dist_type, _vertex>::__vertex,
_builder_allocator_constructor, _manager_builder_allocator_constructor, _data_storage_constructor, _iteration_type>
inherited;
typedef typename inherited::CGraphVertex CGraphVertex;
Expand Down

0 comments on commit b7042c7

Please sign in to comment.