forked from organicmaps/organicmaps
Add reserve() function to limited_priority_queue.
This commit is contained in:
parent
a965bc8474
commit
f822b92a97
1 changed files with 2 additions and 0 deletions
|
@ -76,6 +76,8 @@ public:
|
|||
swap(m_compare, queue.m_compare);
|
||||
}
|
||||
|
||||
void reserve(size_t n) { m_queue.reserve(n); }
|
||||
|
||||
private:
|
||||
vector<T> m_queue;
|
||||
size_t m_maxSize;
|
||||
|
|
Loading…
Add table
Reference in a new issue