summaryrefslogtreecommitdiff
path: root/src/pathfinder/npf/queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pathfinder/npf/queue.h')
-rw-r--r--src/pathfinder/npf/queue.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/pathfinder/npf/queue.h b/src/pathfinder/npf/queue.h
index d7a7a7919..31dac0c0a 100644
--- a/src/pathfinder/npf/queue.h
+++ b/src/pathfinder/npf/queue.h
@@ -25,12 +25,6 @@ typedef bool Queue_DeleteProc(Queue *q, void *item, int priority);
typedef void Queue_ClearProc(Queue *q, bool free_values);
typedef void Queue_FreeProc(Queue *q, bool free_values);
-struct InsSortNode {
- void *item;
- int priority;
- InsSortNode *next;
-};
-
struct BinaryHeapNode {
void *item;
int priority;
@@ -68,9 +62,6 @@ struct Queue {
union {
struct {
- InsSortNode *first;
- } inssort;
- struct {
uint max_size;
uint size;
uint blocks; ///< The amount of blocks for which space is reserved in elements
@@ -80,15 +71,6 @@ struct Queue {
};
-/**
- * Insertion Sorter
- */
-
-/* Initializes a inssort and allocates internal memory. There is no maximum
- * size */
-void init_InsSort(Queue *q);
-
-
/*
* Binary Heap
* For information, see: