[Fix] Heh, this code won't do any good in the destructer..

-- Let the drunk codin' commence.
This commit is contained in:
Rtch90 2012-02-03 21:10:14 +00:00
parent 9d8493376e
commit 19df24c12c

View File

@ -9,6 +9,11 @@ AStarSearch<UserState>::AStarSearch(void) :
template<class UserState>
AStarSearch<UserState>::~AStarSearch(void) {
}
template<class UserState>
void AStarSearch<UserState>::SetStartAndGoalStates(UserState& start, UserState& goal) {
_cancelRequest= false;
_start = AllocateNode();
@ -38,11 +43,6 @@ AStarSearch<UserState>::~AStarSearch(void) {
_steps = 0;
}
template<class UserState>
void AStarSearch<UserState>::SetStartAndGoalStates(UserState& start, UserState& goal) {
}
template<class UserState>
unsigned int AStarSearch<UserState>::SearchStep(void) {