]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/pqueue.hh
* flower/include/pqueue.hh: Derive from std::vector.
[lilypond.git] / flower / include / pqueue.hh
index 2f1896f42a38bb8582d5387301287a8db3a64c6c..17d45f32b59af978bc45aab148746d44c9fe1532 100644 (file)
@@ -34,7 +34,7 @@ int compare (PQueue_ent<K, T> const &e1, PQueue_ent<K, T> const &e2)
 template<class T>
 class PQueue
 {
-  Array<T> heap_array_;
+  std::vector<T> heap_array_;
   T &elt (vsize i)
   {
     return heap_array_[i - 1];