aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorymherklotz <ymherklotz@gmail.com>2016-12-09 22:40:45 +0000
committerymherklotz <ymherklotz@gmail.com>2016-12-09 22:40:45 +0000
commit38b4a2a03419322ae9fc46ab7a85a545fb613141 (patch)
tree24b8151f2225d948b712a996de6fc5ae97f24ecb
parent9991a71d3c90db38d20eda7a49d64446e017e109 (diff)
downloadA-star-algorithm-38b4a2a03419322ae9fc46ab7a85a545fb613141.tar.gz
A-star-algorithm-38b4a2a03419322ae9fc46ab7a85a545fb613141.zip
deleted delete_queue function
-rw-r--r--include/priority_queue.hpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/priority_queue.hpp b/include/priority_queue.hpp
index d9f81db..5d8b5df 100644
--- a/include/priority_queue.hpp
+++ b/include/priority_queue.hpp
@@ -28,8 +28,6 @@ private:
void insert_queue(const T& element, const unsigned int& loc);
T remove_queue(const unsigned int& loc);
-
- void delete_queue();
};
template<typename T>