Skip to content

Commit 62b3f3c

Browse files
Changed mismatched variable types
1 parent bd5d6d5 commit 62b3f3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/stlastar.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -813,7 +813,7 @@ template <class UserState> class AStarSearch
813813
//Debug : need to keep these two iterators around
814814
// for the user Dbg functions
815815
typename std::vector< Node * >::iterator iterDbgOpen;
816-
typename std::vector< Node * >::iterator iterDbgClosed;
816+
typename std::unordered_set<Node*, NodeHash, NodeEqual>::iterator iterDbgClosed;
817817

818818
// debugging : count memory allocation and free's
819819
int m_AllocateNodeCount;

0 commit comments

Comments
 (0)