From 62b3f3ce02b870e858d3b857939780ffb48626ca Mon Sep 17 00:00:00 2001 From: everything fails Date: Sun, 23 Nov 2025 17:17:40 +0100 Subject: [PATCH] Changed mismatched variable types --- cpp/stlastar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/stlastar.h b/cpp/stlastar.h index 7a7a491..02f0dfb 100755 --- a/cpp/stlastar.h +++ b/cpp/stlastar.h @@ -813,7 +813,7 @@ template 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::iterator iterDbgClosed; // debugging : count memory allocation and free's int m_AllocateNodeCount;