diff options
| author | Kirill Petrashin <kirill8201@yandex.ru> | 2026-04-18 15:32:58 +0300 |
|---|---|---|
| committer | Kirill Petrashin <kirill8201@yandex.ru> | 2026-04-18 15:32:58 +0300 |
| commit | 7307751d7c15681100fac1daadaeaf87cbb25cb6 (patch) | |
| tree | 192f6df16d428458dc185424d3dddfd4d41be32a | |
| parent | 42bd6f2883e872da9da8871c856c67534452f847 (diff) | |
| download | astar-7307751d7c15681100fac1daadaeaf87cbb25cb6.tar.xz | |
Remove a leftover debugging printf()
| -rw-r--r-- | priority_queue.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/priority_queue.c b/priority_queue.c index 21130d7..2cb4ef5 100644 --- a/priority_queue.c +++ b/priority_queue.c @@ -12,7 +12,6 @@ PositionPQ *ppq_new(Position pos, size_t priority) { } int ppq_insert(PositionPQ **ppq, Position pos, size_t priority) { - //printf("Inserting %zu %zu\n", pos.x, pos.y); PositionPQ *start = *ppq; /* If ppq is empty, create one */ |
