]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/sstack.hh
release: 0.0.19
[lilypond.git] / flower / sstack.hh
index fa21392de040ae61ce8a44fa91bd8f676efb1a5e..fb4d68c3a5f295da8beae35bb482f368645f7f3a 100644 (file)
@@ -7,22 +7,22 @@
 #ifndef SSTACK_HH
 #define SSTACK_HH
 
-#include "vray.hh"
+#include "varray.hh"
 
-/// A simple stack based on svec.
+/// A simple stack based on Array.
 template<class T>
-struct sstack : svec<T> { 
+struct sstack : Array<T> { 
     T top() { return last(); }
     T pop() {
        assert(!empty());
        T l = last();
-        svec<T>::pop();
+        Array<T>::pop();
        return l;
     }
     void push(T l) { add(l); }
 };
 /**
-  Same as for #svec# goes here.
+  Same as for #Array# goes here.
 */