Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cpp/stlastar.h
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ template <class UserState> class AStarSearch
//Debug : need to keep these two iterators around
// for the user Dbg functions
typename std::vector< Node * >::iterator iterDbgOpen;
typename std::vector< Node * >::iterator iterDbgClosed;
typename std::unordered_set<Node*, NodeHash, NodeEqual>::iterator iterDbgClosed;

// debugging : count memory allocation and free's
int m_AllocateNodeCount;
Expand Down