]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/pqueue.hh
Run `make grand-replace'.
[lilypond.git] / flower / include / pqueue.hh
index 17d45f32b59af978bc45aab148746d44c9fe1532..fa28ca011d574eec179824653de1368fabcdda97 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the Flower Library
 
-  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  (c) 1997--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #ifndef PQUEUE_HH
@@ -34,7 +34,7 @@ int compare (PQueue_ent<K, T> const &e1, PQueue_ent<K, T> const &e2)
 template<class T>
 class PQueue
 {
-  std::vector<T> heap_array_;
+  vector<T> heap_array_;
   T &elt (vsize i)
   {
     return heap_array_[i - 1];