Add missing includes to MutablePriorityQueue

Mainly to prevent heuristic error reports inside IDE
This commit is contained in:
tamasmeszaros 2022-05-16 10:30:22 +02:00
parent de84fbf23d
commit fd0579d4a2

View File

@ -3,6 +3,9 @@
#include <assert.h>
#include <type_traits>
#include <vector>
#include <limits>
#include <cstdlib> // adds size_t (without std::)
template<typename T, typename IndexSetter, typename LessPredicate, const bool ResetIndexWhenRemoved = false>
class MutablePriorityQueue