Skip to content

Commit 50daadb

Browse files
authored
Merge pull request #34 from EverythingFails/setting_correct_data_type
Changed mismatched variable types
2 parents bd5d6d5 + 62b3f3c commit 50daadb

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)